UNPKG

kepler.gl

Version:

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

17 lines (16 loc) 500 B
import { HexColor } from '@kepler.gl/types'; export declare type ColorMap = [string[] | string | number | null, HexColor][]; export declare type ColorLegends = { [key: string]: string; }; export declare type ColorRange = { name?: string; type?: string; category?: string; colors: HexColor[]; reversed?: boolean; colorMap?: ColorMap; colorLegends?: ColorLegends; }; export declare const COLOR_RANGES: ColorRange[]; export declare const DEFAULT_COLOR_RANGE: ColorRange;