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

    Type Alias JssmGenericState

    Topology record for one node in a compiled machine: its name, the set of states it can be reached from, the set of states it can transition to, and whether reaching it constitutes "completing" the machine.

    type JssmGenericState = {
        complete: boolean;
        from: StateType[];
        name: StateType;
        to: StateType[];
    }
    Index
    complete: boolean
    from: StateType[]
    name: StateType
    to: StateType[]