ecspresso
    Preparing search index...

    Interface StateTransitionEvent<S>

    Event published on every state transition.

    interface StateTransitionEvent<S extends string = string> {
        definitionId: string;
        entityId: number;
        from: S;
        to: S;
    }

    Type Parameters

    • S extends string = string

      Union of state name strings (default: string)

    Index

    Properties

    definitionId: string
    entityId: number
    from: S
    to: S