Saxonberg Server API
    Preparing search index...

    Interface BusEvent<P>

    Structural shape for an event that rides the EventApi bus. Any object with a kind discriminator and a payload qualifies.

    interface BusEvent<P = unknown> {
        kind: string;
        payload: P;
    }

    Type Parameters

    • P = unknown
    Index

    Properties

    Properties

    kind: string
    payload: P