All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.eventbus.index.d.mts Maven / Gradle / Ivy

The newest version!
interface EventBusOptions {
    on(type: string, handler: Function): void;
    off(type: string, handler: Function): void;
    emit(type: string, evt?: any): void;
    clear(): void;
}
declare function EventBus(): EventBusOptions;

export { EventBus, type EventBusOptions };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy