Type Alias EventBusSettings<TEventMap>

EventBusSettings: EventBusSettingsBase<TEventMap> & {
    adapter: IEventBusAdapter;
}

Configuration for the EventBus class. Extends EventBusSettingsBase with a required adapter.

IMPORT_PATH: "@daiso-tech/core/event-bus"

Type Parameters

Type declaration

  • adapter: IEventBusAdapter

    The underlying event-bus adapter that handles message dispatching and subscription.