Interface Step<TData, TState>

interface Step<TData, TState> {
    state: TState;
    type: StepType;
    data?: TData;
}

Type Parameters

  • TData
  • TState

Properties

Properties

state: TState
type: StepType
data?: TData