1.0.3 • Published 3 years ago

tinybus v1.0.3

Weekly downloads
4
License
ISC
Repository
github
Last release
3 years ago

tinybus

极小的js事件总线, 没有任何其他依赖

declare class TinyBus {
    public constructor(name?: string, listenerWrapper?: Function);

    public on: (eventName: string, listener: Function) => void;
    public off: (eventName: string, listener: Function) => void;
    public setOn: (eventName: string, listener: Function) => void;
    public clearAllListeners: () => void;
    public emit: (eventName: string, m1?: any, m2?: any, m3?: any, m4?: any, m5?: any) => void;
}
1.0.3

3 years ago

1.0.2

4 years ago

1.0.1

5 years ago

1.0.0

5 years ago