Type Alias TaskGraphEdge

{
* attrs: {
* "depth": 1
* },
* source: "22222222-2222-2222-2222-222222222222",
* target: "11111111-1111-1111-1111-111111111111"
* }
type TaskGraphEdge = {
    attrs?: unknown;
    source?: string;
    target?: string;
}
Index

Properties

attrs?: unknown
source?: string
target?: string