@edgible-team/sdk
    Preparing search index...

    Interface CommandResult

    Outcome of an executor run. Non-zero exits are reported here, not thrown.

    interface CommandResult {
        duration: number;
        exitCode: number;
        stderr: string;
        stdout: string;
        success: boolean;
    }
    Index

    Properties

    duration: number
    exitCode: number
    stderr: string
    stdout: string
    success: boolean