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

    Type Alias JssmEntryEventDetail<mDT>

    Detail payload fired with an entry event. state is the entered state. from is the predecessor state, if any. action is the action that drove the entry, if any.

    type JssmEntryEventDetail<mDT> = {
        action?: StateType;
        data: mDT;
        from?: StateType;
        state: StateType;
    }

    Type Parameters

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