mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-26 17:49:15 +01:00
9 lines
277 B
Go
9 lines
277 B
Go
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;
|