UNPKG

@stencila/types

Version:

JavaScript classes and TypeScript types for the Stencila Schema

18 lines (15 loc) 424 B
// Generated file; do not edit. See https://github.com/stencila/stencila/tree/main/rust/schema-gen /** * Whether, and why, the execution of a node is required or not. */ export type ExecutionRequired = 'No' | 'NeverExecuted' | 'SemanticsChanged' | 'DependenciesChanged' | 'DependenciesFailed' | 'ExecutionFailed' | 'ExecutionCancelled' | 'ExecutionInterrupted' | 'KernelRestarted' | 'UserRequested';