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

Status

import type { Status } from "https://googleapis.deno.dev/v1/workflowexecutions:v1.ts";

Represents the current status of this execution.

interface Status {
currentSteps?: Step[];
}

§Properties

§
currentSteps?: Step[]
[src]

A list of currently executing or last executed step names for the workflow execution currently running. If the workflow has succeeded or failed, this is the last attempted or executed step. Presently, if the current step is inside a subworkflow, the list only includes that step. In the future, the list will contain items for each step in the call stack, starting with the outermost step in the main subworkflow, and ending with the most deeply nested step.