-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
33 lines (32 loc) · 783 Bytes
/
index.d.ts
File metadata and controls
33 lines (32 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
declare module "ald2uma" {
interface Wx {
aldRevenue (params:object):void;
}
interface Aldhook {
}
export function hookAld(context:Wx,uma:object): array;
export namespace uma {
export namespace stage {
export function onStart(){
}
export function onRunning(){
}
export function onEnd(){
}
}
export namespace level {
export function onInitLevel(){
}
export function onSetLevel(){
}
}
export function revenue(){
}
export function trackEvent(){
}
export function onShareAppMessage(){
}
export function shareAppMessage(){
}
}
}