tuil
ReferencePackages@mwillbanks/tuil-workflowAPI

WorkflowParallelSnapshot

interface exported by @mwillbanks/tuil-workflow.

View rawEdit

interface

Public interface exported by @mwillbanks/tuil-workflow.

export interface WorkflowParallelSnapshot {
  readonly id: string;
  readonly stepId: string;
  readonly status: "running" | "succeeded" | "failed" | "cancelled";
  readonly error?: string;
}

Members

MemberTypeRequiredDescriptionRelated types
idstringYesThe id member uses the string contract.
stepIdstringYesThe stepId member uses the string contract.
status"running" | "cancelled" | "failed" | "succeeded"YesThe status member uses the "running" | "cancelled" | "failed" | "succeeded" contract.
errorstring | undefinedNoThe error member uses the string | undefined contract.

Parameters

This declaration has no public members.

Returns

This declaration does not return a value.

Throws

No thrown errors are documented for this declaration.

No package-local related types.

Source

View the secondary source reference

Package

@mwillbanks/tuil-workflow

On this page