chore: upgrade deps (#10824)

This commit is contained in:
Noel
2025-04-05 13:18:56 +02:00
committed by GitHub
parent 432aba3df7
commit f580de8025
200 changed files with 6756 additions and 12893 deletions

View File

@@ -40,6 +40,7 @@ export type ToEventMap<
];
};
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export interface IBaseBroker<TEvents extends {}> {
/**
* Subscribes to the given events
@@ -51,6 +52,7 @@ export interface IBaseBroker<TEvents extends {}> {
unsubscribe(events: (keyof TEvents)[]): Promise<void>;
}
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export interface IPubSubBroker<TEvents extends {}>
extends IBaseBroker<TEvents>,
AsyncEventEmitter<ToEventMap<TEvents>> {