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