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
37 lines (36 loc) • 847 B
TypeScript
import { Basic } from '../common/basic';
import { ResultType } from '../common/data-type';
/**
* @public
* @class CoordAideController
* @extends Basic
*/
declare class CoordAideController extends Basic {
private apiClassName;
private CoordaideValidate;
/**
* @constructor
* @param {any} obj
*/
constructor(obj: any);
/**
* @public
* @async
* @function Display
* @param {{entity?: Array<any>, coordZRef?: number, coordZ?: number}} opt
* @returns {Promise<ResultType>}
*/
Display(opt: {
entity?: Array<any>;
coordZRef?: number;
coordZ?: number;
}): Promise<ResultType>;
/**
* @public
* @async
* @function Clear
* @returns {Promise<ResultType>}
*/
Clear(): Promise<ResultType>;
}
export default CoordAideController;