type LayerType = 'blocks' | 'naves' | 'squares' | 'cells'; interface ILayer { fileName: string; fileUrl: string; contentType: string; size: number; lastModified: string; } export type { ILayer as I, LayerType as L };