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.

15 lines 252 B
/** * @module EventBus */ /** * * IMPORT_PATH: `"@daiso-tech/core/event-bus/contracts"` * @group Contracts */ export class BaseEvent { fields; constructor(fields) { this.fields = fields; } } //# sourceMappingURL=_shared.js.map