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
23 lines (22 loc) • 380 B
TypeScript
/**
* @enum UeMessageEnum
* @param API API调用正常返回
* @param EVENT UE主动发的事件
* @param ERROR UE出现异常
*/
export declare enum UeMessageEnum {
API = 0,
EVENT = 1,
ERROR = 2
}
/**
* @enum SelectionEnum
* @param Add 0
* @param Remove 1
* @param Clear 2
*/
export declare enum SelectionEnum {
Add = 0,
Remove = 1,
Clear = 2
}