UNPKG
yuxuannnn_utils
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
xs开发的前端工具包
github.com/aiketangdezhiyi/yuxuannnn_utils
aiketangdezhiyi/yuxuannnn_utils
yuxuannnn_utils
/
lib
/
eventBus
/
EventBus.d.ts
14 lines
(13 loc)
•
353 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * 发布订阅模式 : 事件总线 */
export
declare
class
EventBus
{
#private;
/** * 监听事件 */
$on
(eventType:
string
, handle: Function):
void
;
$emit
(eventType:
string
, ...args: any[]):
void
;
$once
(eventType:
string
, handle: Function):
void
;
$off
(eventType:
string
, handle: Function):
void
; }