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

16 lines (15 loc) 660 B
import { ResultType, IOperations } from './data-type'; /** * @abstract * @class ObjectAbstract * @abstract @function GetData @returns {any} * @abstract @function SetData @param {any} obj @returns {void} * @abstract @function Update @param {any} opt @returns {Promise<ResultType>} */ export declare abstract class ObjectAbstract { abstract GetData: () => any; abstract SetData: (opt: Record<string, any>) => void; abstract Update: (opt: Record<string, any>, operations?: IOperations) => Promise<ResultType>; abstract generateAtomData: (opt: Record<string, any>) => Record<string, any>; abstract GetScheme: () => Record<string, any>; }