fsm-util-lib - v1.0.0
    Preparing search index...

    Type Alias TransitionFunction<State, Input>

    TransitionFunction: Record<State, Record<Input, State>>

    TransitionFunction maps a State and an Input symbol to the next State. It's declared as its own type to improve readability and reuse across the codebase.

    Type Parameters

    • State extends string
    • Input extends string