import { IFeature } from './IFeature'; import { IGeoJson } from './IGeoJson'; import { IHeatmapPaintOption } from './IHeatmapPaintOption'; import { IPolygonPaintOption } from './IPolygonPaintOption'; import { OVERLAY_TYPE } from './OverlayLayerType'; export interface IOverlayLayerOption { type: OVERLAY_TYPE; source: string; data?: IGeoJson | IFeature | IFeature[]; paint: Partial & Partial; floorId?: string; }