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

    Type Alias JssmEventName

    JssmEventName:
        | "transition"
        | "rejection"
        | "action"
        | "entry"
        | "exit"
        | "terminal"
        | "complete"
        | "error"
        | "data-change"
        | "override"
        | "timeout"
        | "hook-registration"
        | "hook-removal"

    All event names that jssm!Machine.on accepts. These are observation events fired by the machine in addition to (not in place of) the hook system. Hooks intercept; events observe.

    Machine.on