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

34 lines (33 loc) 771 B
import { ResultType } from '../common/data-type'; import { ISectionStart } from '../common/interface/section'; import { Basic } from '../common/basic'; /** * @public * @class SectionController * @extends Basic */ declare class SectionController extends Basic { private apiClassName; private SectionValidate; /** * @constructor * @param {any} obj */ constructor(obj: any); /** * @public * @async * @function Start * @param {ISectionStart} opt * @returns {Promise<ResultType>} */ Start(opt: ISectionStart): Promise<ResultType>; /** * @public * @async * @function End * @returns {Promise<ResultType>} */ End(): Promise<ResultType>; } export default SectionController;