ohctechv3/.svn/pristine/95/952bdf4f12638182309f164e7c6f2fe0243f7860.svn-base
2024-10-28 15:03:36 +05:30

10 lines
293 B
Plaintext

export interface MessageBus {
subscribe(topic: string, callback: Function): () => void;
publish(topic: string, ...args: unknown[]): void;
}
export declare function createMessageBus(): MessageBus;
/**
* @ignore - internal hook.
*/
export declare function useMessageBus(): MessageBus;