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

    Type Alias JssmOverrideEventDetail<mDT>

    Detail payload fired with an override event. Distinguishes a forced state replacement from a normal transition.

    type JssmOverrideEventDetail<mDT> = {
        from: StateType;
        new_data?: mDT;
        old_data: mDT;
        to: StateType;
    }

    Type Parameters

    • mDT
    Index
    from: StateType
    new_data?: mDT
    old_data: mDT