Type Alias TaskTopology

Indicates the task's position in a dependency graph.

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

Properties

Properties

isChild?: boolean

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

isParent?: boolean