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) • 654 B
TypeScript
import { Basic } from './common/basic';
import { ResultType } from './common/data-type';
/**
* @public
* @class ApiStateManagerController
* @extends Basic
*/
declare class ApiStateManagerController extends Basic {
private apiClassName;
/**
* @constructor
* @param {any} obj
*/
constructor(obj: any);
/**
* @public
* @async
* @function Record
* @returns {Promise<ResultType>}
*/
Record(): Promise<ResultType>;
/**
* @public
* @async
* @function Reset
* @returns {Promise<ResultType>}
*/
Reset(): Promise<ResultType>;
}
export default ApiStateManagerController;