UNPKG

kepler.gl

Version:

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

34 lines (29 loc) 587 B
// SPDX-License-Identifier: MIT // Copyright contributors to the kepler.gl project export type TimeLabelFormat = { id: string; format: string | null; type: string; label: string; }; type TooltipFields = { format?: string; id?: string; name?: string; fieldIdx?: number; type?: string; displayFormat?: string; displayName: string; }; export type ColMetaProps = { colIdx: number; name: string; displayName: string; type: string; format?: string; columnStats?: any; displayFormat?: string; }; export type ColMeta = { [key: string]: ColMetaProps; };