UNPKG

51timapi

Version:

TimApi is a traffic related plugin for WdpApi.

12 lines (11 loc) 419 B
import { EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type'; export interface HeatMapEntityAtomType { type: string; brushDiameter: number; mappingValueRange: Array<number>; gradientSetting: Array<string>; } export interface HeatMapType extends EntityEidType, Partial<BasicInfoAtomType> { heatMapStyle?: Partial<HeatMapEntityAtomType>; points?: IPointValueAtom; }