Module

x/jssm/es6/jssm_types.d.ts>JssmMachineInternalState

Fast, easy Javascript finite state machines with visualizations; enjoy a one liner FSM instead of pages. MIT; Typescripted; 100% test coverage. Implements the FSL language.
Go to Latest
type alias JssmMachineInternalState
import { type JssmMachineInternalState } from "https://dotland.deno.dev/x/jssm@5.71.1/es6/jssm_types.d.ts";
definition: { internal_state_impl_version: 1; state: StateType; states: Map<StateType, JssmGenericState>; named_transitions: Map<StateType, number>; edge_map: Map<StateType, Map<StateType, number>>; actions: Map<StateType, Map<StateType, number>>; reverse_actions: Map<StateType, Map<StateType, number>>; edges: Array<JssmTransition<DataType>>; }