refactor(server): remove unused on method (#13830)

This commit is contained in:
Jason Rasmussen 2024-10-30 14:09:52 -04:00 committed by GitHub
parent 7961435d36
commit 40fbef50cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 5 deletions

View file

@ -88,7 +88,6 @@ export type EventItem<T extends EmitEvent> = {
export interface IEventRepository {
setup(options: { services: ClassConstructor<unknown>[] }): void;
on<T extends keyof EventMap>(item: EventItem<T>): void;
emit<T extends keyof EventMap>(event: T, ...args: ArgsOf<T>): Promise<void>;
/**