mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-30 18:00:56 +01:00
4 lines
267 B
TypeScript
4 lines
267 B
TypeScript
export declare const eventBus: import("mitt").Emitter<Record<import("mitt").EventType, unknown>>;
|
|
export declare const subscribe: (event: string, handler: (...args: any[]) => void) => () => void;
|
|
export declare const publish: (event: string, ...args: any[]) => void;
|