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;
|
|
}
|