mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-16 10:16:20 +01:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
import { AreaType } from './area';
|
|
import { ShapeType } from './shape';
|
|
|
|
export interface TileBaseType {
|
|
area: AreaType;
|
|
shape: ShapeType;
|
|
}
|