interface ExecutionStep {
    children?: ExecutionStep[];
    description: string;
    duration: number;
    name: string;
    result?: Record<string, unknown>;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

    Custom keys for the step, holding additional debugging information.

Properties

children?: ExecutionStep[]

The sub-steps making up the step.

description: string

The step description.

duration: number

The time, in milliseconds, spent on the step.

name: string

The step name.

result?: Record<string, unknown>

The values returned by the step.