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

31 lines (30 loc) 629 B
import { Basic } from '../common/basic'; import { ResultType } from '../common/data-type'; /** * @public * @class MeasureController * @extends Basic */ declare class MeasureController extends Basic { private apiClassName; /** * @constructor * @param {any} obj */ constructor(obj: any); /** * @public * @async * @function Start * @returns {Promise<ResultType>} */ Start(): Promise<ResultType>; /** * @public * @async * @function End * @returns {Promise<ResultType>} */ End(): Promise<ResultType>; } export default MeasureController;