-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheveemi.d.ts
38 lines (37 loc) · 1.03 KB
/
eveemi.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
declare module "@isoden/eveemi" {
export class EveEmi {
private _allListener;
/**
* 初期化処理
*/
constructor();
/**
* イベントを購読する
*/
on(type: string, callback: Function, ctx?: any, once?: boolean): void;
/**
* targetのイベントを購読する
*/
listenTo(target: EveEmi, type: string, callback: Function, ctx?: any, once?: boolean): void;
/**
* targetのイベントを一度だけ購読する
*/
listenToOnce(target: EveEmi, type: string, callback: Function, ctx?: any): void;
/**
* targetのイベント購読を取り消す
*/
stopListening(target: EveEmi, type: string, func: Function): void;
/**
* イベント購読を取り消す
*/
off(type: string, func: Function): void;
/**
* イベントを一回だけ購読する
*/
once(type: string, callback: Function, ctx?: any): void;
/**
* イベントを発火させる
*/
trigger(_type: string, ...args: any[]): void;
}
}