Member Junction
    Preparing search index...

    Output of the task-graph debug control verbs — what happened and the debug state now in force.

    interface TaskGraphDebugControlOutput {
        debug?: {
            breakpoints?: string[];
            edgeOverrides?: Record<string, "true" | "false">;
            paused?: boolean;
            pausedAtTaskID?: string;
            pausedBy?: string;
            pausedReason?: "user" | "breakpoint";
            step?: string;
        };
        errorMessage?: string;
        success: boolean;
    }
    Index

    Properties

    debug?: {
        breakpoints?: string[];
        edgeOverrides?: Record<string, "true" | "false">;
        paused?: boolean;
        pausedAtTaskID?: string;
        pausedBy?: string;
        pausedReason?: "user" | "breakpoint";
        step?: string;
    }

    The graph's debug state after the verb (pause/step/breakpoints/overrides).

    errorMessage?: string
    success: boolean