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

61 lines (60 loc) 1.49 kB
import { ObjectAbstract } from '../../../common/object-abstract'; import { Text3DType, Text3DEntityAtomType, IGenerate } from '../../../common/interface/text3d'; import { ObjectController } from '../../../common/object-controller'; /** * @public * @class Text3D * @extends ObjectController * @implements ObjectAbstract */ declare class Text3D extends ObjectController implements ObjectAbstract { className: string; private Text3DEntityAtom; /** * @constructor * @param {Text3DType} opt (optional) */ constructor(opt?: Text3DType); /** * @public * @function GetScheme * @returns {{Text3DEntityAtom: Text3DEntityAtomType}} */ GetScheme(): { Text3DEntityAtom: Text3DEntityAtomType; }; /** * @public * @function GetData * @returns {Text3DType} */ GetData(): Text3DType; /** * @public * @function SetData * @param {Text3DType} opt * @returns {void} */ SetData(opt: Text3DType): void; /** * @public * @function generateAtomData * @param {Text3DType} opt * @returns {IGenerate} */ generateAtomData(opt: Text3DType): IGenerate; /** * @public * @function GetValidateRules * @returns {Text3DType} */ GetValidateRules(): Text3DType; /** * @public * @function Validate * @param {Text3DType} opt * @returns {void} */ Validate(opt: Text3DType): void; } export default Text3D;