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

    Type Alias HookDescriptionWithAction<mDT>

    type HookDescriptionWithAction<mDT> = {
        action: string;
        from: string;
        handler: HookHandler<mDT>;
        kind: "named";
        to: string;
    }

    Type Parameters

    • mDT
    Index
    action: string
    from: string
    handler: HookHandler<mDT>
    kind: "named"
    to: string