Beignet API reference
    Preparing search index...

    Interface UseCaseEventBusTarget

    Minimal event-bus shape accepted by use-case event helpers.

    interface UseCaseEventBusTarget {
        publish<E extends DomainEventLike>(
            event: E,
            payload: InferUseCaseEventPayload<E>,
        ): void | Promise<void>;
    }
    Index

    Methods

    Methods