import { EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type'; export interface HeatMapEntityAtomType { type: string; brushDiameter: number; mappingValueRange: Array; gradientSetting: Array; } export interface HeatMapType extends EntityEidType, Partial { heatMapStyle?: Partial; points?: IPointValueAtom; }