Theia API Documentation v1.68.0
    Preparing search index...
    interface ShellExecutionResult {
        canceled?: boolean;
        duration: number;
        error?: string;
        exitCode: undefined | number;
        resolvedCwd?: string;
        stderr: string;
        stdout: string;
        success: boolean;
    }
    Index

    Properties

    canceled?: boolean

    Whether the execution was canceled by user action (not timeout)

    duration: number

    Execution duration in milliseconds

    error?: string
    exitCode: undefined | number
    resolvedCwd?: string

    The resolved working directory where the command was executed

    stderr: string
    stdout: string
    success: boolean