Interface DebugSessionOptions

interface DebugSessionOptions {
    compact?: boolean;
    consoleMode?: DebugConsoleMode;
    lifecycleManagedByParent?: boolean;
    noDebug?: boolean;
    parentSessionId?: string;
    suppressDebugStatusbar?: boolean;
    suppressDebugView?: boolean;
    suppressSaveBeforeStart?: boolean;
    testRun?: {
        controllerId: string;
        runId: string;
    };
}

Properties

compact?: boolean
consoleMode?: DebugConsoleMode
lifecycleManagedByParent?: boolean
noDebug?: boolean
parentSessionId?: string
suppressDebugStatusbar?: boolean
suppressDebugView?: boolean
suppressSaveBeforeStart?: boolean
testRun?: {
    controllerId: string;
    runId: string;
}

Type declaration

  • controllerId: string
  • runId: string