-
Notifications
You must be signed in to change notification settings - Fork 8
/
KBEngine.d.ts
50 lines (34 loc) · 941 Bytes
/
KBEngine.d.ts
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
declare module KBEngine {
class Class {
static extend(props): string
}
class Account {
}
class Entity extends Class {
static extend(arg0: { __init__: () => void; onDisableAccountRes(msg: any): void; onDisableLoginRes(data: any): void; onRefreshTokenRes(token: any): void; }): typeof Account {
throw new Error("Method not implemented.");
}
}
const app: any
function create(params: type) {
}
class Event {
static register(arg0: string, arg1: this, arg2: string) {
throw new Error("Method not implemented.");
}
static deregister(arg0: string, arg1: this, arg2: string) {
throw new Error("Method not implemented.");
}
static fire(arg0: string, userName: any, pw: any, datas: {}) {
throw new Error("Method not implemented.");
}
}
function INFO_MSG(params: type) {
}
function DEBUG_MSG(params: type) {
}
function ERROR_MSG(params: type) {
}
function WARNING_MSG(params: type) {
}
}