Skip to content

ExecutionHistoryInput

type ExecutionHistoryInput =
| HistoryEvent[]
| GetExecutionHistoryCommandOutput
| {
events: HistoryEvent[];
}
| string;

Defined in: src/types/index.ts:1168

Accepted forms of execution history input: an events array, a raw GetExecutionHistory response, or a JSON string of either.