spawn-ts API reference - v0.6.0
    Preparing search index...

    Interface CmdResult

    Result of running a command: text output + whether it errored.

    interface CmdResult {
        error?: boolean;
        lines: string[];
    }
    Index
    error?: boolean
    lines: string[]