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

    Type Alias JssmExitEventDetail<mDT>

    Detail payload fired with an exit event. state is the exited state. to is the next state, if any. action is the action that drove the exit, if any.

    type JssmExitEventDetail<mDT> = {
        action?: StateType;
        data: mDT;
        state: StateType;
        to?: StateType;
    }

    Type Parameters

    • mDT
    Index
    action?: StateType
    data: mDT
    state: StateType