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

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