UNPKG

wdpapi

Version:

51WORLD WdpApi is a set of programming interfaces developed by JavaScript that is responsible for negotiating between web pages and cloud rendering platforms. Supported by 51Cloud rendering platform, it enables the users to create any HTML5 UI element on

39 lines (38 loc) 1.71 kB
import { EntityEidType, BasicInfoAtomType, IPointValueAtom, VisibleAtomType, EntityFlagAtomType, EntityOutlinerAtomType } from '../data-type'; /** * @interface SpaceHeatMapEntityAtomType * @param {number} brushDiameter * @param {Array<number>} mappingValueRange * @param {Array<string>} gradientSetting */ export interface SpaceHeatMapEntityAtomType { brushDiameter: number; mappingValueRange: Array<number>; gradientSetting: Array<string>; } /** * @interface SpaceHeatMapType * @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<VisibleAtomType>,Partial<EntityFlagAtomType> * @param {Partial<SpaceHeatMapEntityAtomType>} spaceHeatMapStyle (optional) * @param {IPointValueAtom} points (optional) */ export interface SpaceHeatMapType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<VisibleAtomType>, Partial<EntityFlagAtomType>, Partial<EntityOutlinerAtomType> { spaceHeatMapStyle?: Partial<SpaceHeatMapEntityAtomType>; points?: IPointValueAtom; } /** * @interface IGenerate * @param {Partial<SpaceHeatMapEntityAtomType>} SpaceHeatMapEntityAtom (optional) * @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional) * @param {Partial<IPointValueAtom>} PointValueAtom (optional) * @param {Partial<VisibleAtomType>} VisibleAtom (optional) * @param {Partial<EntityFlagAtomType>} EntityFlagAtom (optional) */ export interface IGenerate { SpaceHeatMapEntityAtom?: Partial<SpaceHeatMapEntityAtomType>; BasicInfoAtom?: Partial<BasicInfoAtomType>; PointValueAtom?: Partial<IPointValueAtom>; VisibleAtom?: Partial<VisibleAtomType>; EntityFlagAtom?: Partial<EntityFlagAtomType>; EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>; }