@Cards-TS
    Preparing search index...

    Type Alias NestedMachine<T>

    type NestedMachine<T> = {
        start: string;
        states: {
            [state: string]:
                | { run?: MachineLike<T> }
                | { run?: MachineLike<T> } & TransitionOptions<T, string>;
        };
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    start: string
    states: {
        [state: string]:
            | { run?: MachineLike<T> }
            | { run?: MachineLike<T> } & TransitionOptions<T, string>;
    }