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

    Type Alias JssmTransitionList

    The set of states that can immediately precede or follow a given state. Returned by jssm helpers that report a state's connectivity in the graph.

    type JssmTransitionList = {
        entrances: StateType[];
        exits: StateType[];
    }
    Index
    entrances: StateType[]
    exits: StateType[]