export interface TilingMeta { name: string; desc?: string; width: number; height: number; } export interface Tiling { id: string; meta: TilingMeta; }