UNPKG

51timapi

Version:

TimApi is a traffic related plugin for WdpApi.

15 lines (14 loc) 544 B
import { EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type'; export interface ColumnarHeatMapEntityAtomType { type: string; brushDiameter: number; mappingValueRange: Array<number>; columnarWidth: number; mappingHeightRange: Array<number>; enableGap: boolean; gradientSetting: Array<string>; } export interface ColumnarHeatMapType extends EntityEidType, Partial<BasicInfoAtomType> { columnarHeatMapStyle?: Partial<ColumnarHeatMapEntityAtomType>; points?: IPointValueAtom; }