tuil
ReferencePackages@mwillbanks/tuil-coreAPI

CommandExecution

interface exported by @mwillbanks/tuil-core.

View rawEdit

interface

Public interface exported by @mwillbanks/tuil-core.

export interface CommandExecution {
  readonly commandId: string;
  readonly startedAt: number;
  readonly completedAt: number;
  readonly status: "succeeded" | "failed" | "cancelled" | "disabled";
  readonly error?: unknown;
}

Members

MemberTypeRequiredDescriptionRelated types
commandIdstringYesThe commandId member uses the string contract.
startedAtnumberYesThe startedAt member uses the number contract.
completedAtnumberYesThe completedAt member uses the number contract.
status"succeeded" | "failed" | "cancelled" | "disabled"YesThe status member uses the "succeeded" | "failed" | "cancelled" | "disabled" contract.
errorunknownNoThe error member uses the unknown 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-core

On this page