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) • 454 B
TypeScript
import { ICompass } from '../../common/interface/compass';
/**
* @public
* @class Compass
*/
declare class Compass {
private eid;
private source;
private display;
/**
* @public
* @function GetData
* @returns {ICompass}
*/
GetData(): ICompass;
/**
* @public
* @function SetData
* @param {ICompass} opt
* @returns {void}
*/
SetData(opt: ICompass): void;
}
export default Compass;