ixfx
    Preparing search index...

    Type Alias DriverRunner<V>

    type DriverRunner<V extends Transitions> = {
        getValue: () => StateNames<V>;
        reset: () => void;
        run: () => Promise<MachineState<V> | undefined>;
        to: (state: StateNames<V>) => MachineState<V>;
    }

    Type Parameters

    Index

    Properties

    Properties

    getValue: () => StateNames<V>
    reset: () => void
    run: () => Promise<MachineState<V> | undefined>
    to: (state: StateNames<V>) => MachineState<V>