diff --git a/src/common/app-event-bus/event-bus.ts b/src/common/app-event-bus/event-bus.ts index 71a27e1a42..67d23587c7 100644 --- a/src/common/app-event-bus/event-bus.ts +++ b/src/common/app-event-bus/event-bus.ts @@ -8,7 +8,8 @@ import { EventEmitter } from "../event-emitter"; export interface AppEvent { name: string; action: string; - params?: object; + destination?: string; + params?: Record; } export const appEventBus = new EventEmitter<[AppEvent]>();