@flowscripter/dynamic-plugin-framework
    Preparing search index...

    Interface SpawnResult

    Outcome of a SpawnInterface.spawn call.

    ok is true only when the process launched and exited with code 0. A launch failure (e.g. the binary was not found) sets error with no exitCode; a non-zero exit sets exitCode with no error; a process that did not exit within options.timeoutMs sets timedOut with no error/exitCode.

    interface SpawnResult {
        error?: Error;
        exitCode?: number;
        ok: boolean;
        timedOut?: boolean;
    }
    Index
    error?: Error
    exitCode?: number
    ok: boolean
    timedOut?: boolean