@stencila/types
Version:
JavaScript classes and TypeScript types for the Stencila Schema
19 lines (16 loc) • 386 B
text/typescript
// Generated file; do not edit. See https://github.com/stencila/stencila/tree/main/rust/schema-gen
/**
* Status of the most recent, including any current, execution of a document node.
*/
export type ExecutionStatus =
'Scheduled' |
'Pending' |
'Skipped' |
'Empty' |
'Running' |
'Succeeded' |
'Warnings' |
'Errors' |
'Exceptions' |
'Cancelled' |
'Interrupted';