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
47 lines (46 loc) • 1.98 kB
TypeScript
import { EntityEidType, BasicInfoAtomType, IPointValueAtom, VisibleAtomType, EntityFlagAtomType, EntityOutlinerAtomType } from '../data-type';
/**
* @interface ColumnarHeatMapEntityAtomType
* @param {string} type
* @param {number} brushDiameter
* @param {Array<number>} mappingValueRange
* @param {number} columnarWidth
* @param {Array<number>} mappingHeightRange
* @param {boolean} enableGap
* @param {Array<string>} gradientSetting
*/
export interface ColumnarHeatMapEntityAtomType {
type: string;
brushDiameter: number;
mappingValueRange: Array<number>;
columnarWidth: number;
mappingHeightRange: Array<number>;
enableGap: boolean;
gradientSetting: Array<string>;
}
/**
* @interface ColumnarHeatMapType
* @extends EntityEidType,Partial<BasicInfoAtomType>,Partial<VisibleAtomType>,Partial<EntityFlagAtomType>
* @param {Partial<ColumnarHeatMapEntityAtomType>} columnarHeatMapStyle (optional)
* @param {IPointValueAtom} points (optional)
*/
export interface ColumnarHeatMapType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<VisibleAtomType>, Partial<EntityFlagAtomType>, Partial<EntityOutlinerAtomType> {
columnarHeatMapStyle?: Partial<ColumnarHeatMapEntityAtomType>;
points?: IPointValueAtom;
}
/**
* @interface IGenerate
* @param {Partial<ColumnarHeatMapEntityAtomType>} ColumnarHeatMapEntityAtom (optional)
* @param {Partial<BasicInfoAtomType>} BasicInfoAtom (optional)
* @param {Partial<IPointValueAtom>} PointValueAtom (optional)
* @param {Partial<VisibleAtomType>} VisibleAtom (optional)
* @param {Partial<EntityFlagAtomType>} EntityFlagAtom (optional)
*/
export interface IGenerate {
ColumnarHeatMapEntityAtom?: Partial<ColumnarHeatMapEntityAtomType>;
BasicInfoAtom?: Partial<BasicInfoAtomType>;
PointValueAtom?: Partial<IPointValueAtom>;
VisibleAtom?: Partial<VisibleAtomType>;
EntityFlagAtom?: Partial<EntityFlagAtomType>;
EntityOutlinerAtom?: Partial<EntityOutlinerAtomType>;
}