export interface LayerOptions { color: string; visible: boolean; jsonFromUrl: boolean; mapjsonUrl: string; mapjson: string; nodeHighlight: string; srcField: string; dstField: string; inboundValueField: string; outboundValueField: string; endpointId: string; legend: boolean; name: string; nodeWidth: number; edgeWidth: number; pathOffset: number; dashboardEdgeSrcVar: string; dashboardEdgeDstVar: string; dashboardNodeVar: string; nodeThresholds: any; nodeNameMatchField: string; nodeValueField: string; remoteUrl?: string; } export interface MapOptions { configurationUrl: string; background: string; initialViewStrategy: string; latitudeVar: string; layerLimit: number; longitudeVar: string; showSidebar: boolean; showViewControls: boolean; showLegend: boolean; enableScrolling: boolean; enableEditing: boolean; enableNodeAnimation: boolean; enableEdgeAnimation: boolean; editMode: boolean; thresholds: any[]; legendColumnLength: number; legendPosition: string; legendDefaultBehavior: string; zIndexBase: number; topologySource: string; viewport: { top?: number; left?: number; bottom?: number; right?: number; center?: { lat: number; lng: number; }; zoom?: number; }; layers: Array>; } export interface IColumn { selector: string; text: string; type: string; } export interface IFlowSheet { name: string; url: string; expectedFlow: string; } //# sourceMappingURL=types.d.ts.map