Documentation
    Preparing search index...

    Interface WorkflowTransition<TState, TEvent, TContext>

    interface WorkflowTransition<TState, TEvent, TContext> {
        action?: ActionFunction<TContext>;
        event: TEvent;
        from: TState;
        guard?: GuardFunction<TContext>;
        to: TState;
    }

    Type Parameters

    • TState
    • TEvent
    • TContext
    Index

    Properties

    event: TEvent
    from: TState
    to: TState