Files
Botexercito/Frontend/angular-internal-chat/node_modules/thingies/lib/fanout.d.ts
T
2026-03-22 18:07:19 +00:00

8 lines
263 B
TypeScript

export type FanOutUnsubscribe = () => void;
export type FanOutListener<D> = (data: D) => void;
export declare class FanOut<D> {
readonly listeners: Set<FanOutListener<D>>;
emit(data: D): void;
listen(listener: FanOutListener<D>): FanOutUnsubscribe;
}