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

25 lines (24 loc) 639 B
import { ResultType, Visible2DAtomType, deepPartial } from '../common/data-type'; /** * @public * @class VisibleAtomController */ declare class VisibleAtomController { private apiClassName2D; private obj; /** * @constructor * @param {any} obj */ constructor(obj: any); /** * @public * @async * @function SetVisible2D * @param {Array<string>} eids * @param {deepPartial<Visible2DAtomType>} opt * @returns {Promise<ResultType>} */ SetVisible2D(eids: Array<string>, opt: deepPartial<Visible2DAtomType>): Promise<ResultType>; } export default VisibleAtomController;