Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MultiStep

import type { MultiStep } from "https://googleapis.deno.dev/v1/toolresults:v1beta3.ts";

Details when multiple steps are run with the same configuration as a group.

interface MultiStep {
multistepNumber?: number;
primaryStep?: PrimaryStep;
primaryStepId?: string;
}

§Properties

§
multistepNumber?: number
[src]

Unique int given to each step. Ranges from 0(inclusive) to total number of steps(exclusive). The primary step is 0.

§
primaryStep?: PrimaryStep
[src]

Present if it is a primary (original) step.

§
primaryStepId?: string
[src]

Step Id of the primary (original) step, which might be this step.