Files
Homarr/src/types/tile.ts
2022-12-04 17:37:28 +01:00

8 lines
145 B
TypeScript

import { AreaType } from './area';
import { ShapeType } from './shape';
export interface TileBaseType {
area: AreaType;
shape: ShapeType;
}