6 lines
89 B
TypeScript
6 lines
89 B
TypeScript
export interface Unit {
|
|
code: string
|
|
name: string
|
|
installation?: string | number
|
|
}
|