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

32 lines (31 loc) 716 B
import { ResultType, BasicInfoAtomType } from '../common/data-type'; /** * @public * @class BasicInfoController */ declare class BasicInfoController { private apiClassName; private obj; /** * @constructor * @param {any} obj */ constructor(obj: any); /** * @public * @async * @function Update * @param {Partial<BasicInfoAtomType>} opt * @returns {Promise<ResultType>} */ Update(opt: Partial<BasicInfoAtomType>): Promise<ResultType>; /** * @public * @async * @function Get * @param {string} eid * @returns {Promise<ResultType>} */ Get(eid: string): Promise<ResultType>; } export default BasicInfoController;