JSSM, a JavaScript state machine - the FSM for FSL
    Preparing search index...

    Type Alias JssmTerminalEventDetail<mDT>

    Detail payload fired with a terminal event. Indicates that the machine has reached a state with no outgoing edges.

    type JssmTerminalEventDetail<mDT> = {
        data: mDT;
        state: StateType;
    }

    Type Parameters

    • mDT
    Index
    data: mDT
    state: StateType