Type Alias TaskTopology

Indicates the task's position in a dependency graph.

type TaskTopology = {
    isChild?: boolean;
    isParent?: boolean;
}
Index
isChild?: boolean

When true, this task is triggered by one or more parent tasks.

isParent?: boolean

When true, this task has one or more downstream dependent tasks.