import { MinMaxType, EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type'; export interface RoadHeatMapType extends EntityEidType, Partial { roadHeatMapStyle?: Partial; points?: IPointValueAtom; } export interface RoadHeatMapEntityAtomType { type: string; width: number; mappingValueRange: MinMaxType; gradientSetting: Array; filter: Array; }