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

    Type Alias JssmBoundaryHooks

    The compiled boundary-hook surface for a single subject (a group or a state): the action to run on entry (onEnter) and/or on exit (onExit). Each is optional so a subject may declare only one direction; the compiler merges an enter and an exit declaration for the same subject into one of these.

    JssmHookDeclaration

    type JssmBoundaryHooks = {
        onEnter?: string;
        onExit?: string;
    }
    Index
    onEnter?: string
    onExit?: string