kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
13 lines (12 loc) • 359 B
TypeScript
import { VectorTileMetadata } from '@kepler.gl/layers';
export declare type DatasetCreationAttributes = {
name: string;
type: string;
metadata: Record<string, any>;
};
export declare type MetaResponse = {
metadata?: VectorTileMetadata | null;
dataset?: DatasetCreationAttributes | null;
loading?: boolean;
error?: Error | null;
};