UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

13 lines (12 loc) 291 B
/** * @module EventBus */ /** * * IMPORT_PATH: `"@daiso-tech/core/event-bus/contracts"` * @group Contracts */ export declare abstract class BaseEvent<TFields extends Record<string, unknown> = Record<string, unknown>> { readonly fields: TFields; constructor(fields: TFields); }