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

NavigationInfo

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

NavigationInfo describes what steps if any come before or after this step, or what steps are parents or children of this step.

interface NavigationInfo {
children?: bigint[];
next?: bigint;
parent?: bigint;
previous?: bigint;
}

§Properties

§
children?: bigint[]
[src]

Step entries that can be reached by "stepping into" e.g. a subworkflow call.

§
parent?: bigint
[src]

The step entry, if any, that can be reached by "stepping out" of the current workflow being executed.