UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

14 lines (13 loc) 445 B
import type { VectorTileMetadata } from '@kepler.gl/table'; import type { StacTypes } from '@kepler.gl/types'; export declare type DatasetCreationAttributes = { name: string; type: string; metadata: Record<string, any>; }; export declare type MetaResponse = { metadata?: VectorTileMetadata | StacTypes.CompleteSTACObject | null; dataset?: DatasetCreationAttributes | null; loading?: boolean; error?: Error | null; };