ConfigBaseBase type-level configuration carried by an ExecutionPlan.
Details
provides tracks services supplied by plan steps, input tracks the error
input consumed by schedules and while predicates, error tracks failures
from plan layers or predicates, and requirements tracks services needed to
build or run the plan.
models
Source effect/ExecutionPlan.ts:1576 lines
export type type ConfigBase = {
provides: any
input: any
error: any
requirements: any
}
Base type-level configuration carried by an ExecutionPlan.
Details
provides tracks services supplied by plan steps, input tracks the error
input consumed by schedules and while predicates, error tracks failures
from plan layers or predicates, and requirements tracks services needed to
build or run the plan.
ConfigBase = {
provides: anyprovides: any
input: anyinput: any
error: anyerror: any
requirements: anyrequirements: any
}