Interface StepSuccess<TInput, TOutput>

interface StepSuccess<TInput, TOutput> {
    status: "success";
    output: TOutput;
    payload: TInput;
    startedAt: number;
    endedAt: number;
}

Type Parameters

  • TInput
  • TOutput

Properties

status
output: TOutput
payload: TInput
startedAt: number
endedAt: number