MDAA TS Docs
    Preparing search index...

    Function synthFailureMessage

    • Build the failure message for a non-zero mdaa synth exit.

      Parameters

      • result: {
            error?: Error & { code?: string };
            signal?: Signals | null;
            status: number | null;
            stderr?: Buffer<ArrayBufferLike> | null;
            stdout?: Buffer<ArrayBufferLike> | null;
        }
        • Optionalerror?: Error & { code?: string }

          Set when the child could not be spawned, or ETIMEDOUT when the timeout fired

        • Optionalsignal?: Signals | null

          Set when the child was killed — SIGTERM for a spawnSync timeout, SIGKILL for an OOM kill. Derived from SpawnSyncReturns rather than written as NodeJS.Signals: that namespace is a type-only global from @types/node, invisible to eslint's scope analysis, so naming it directly trips no-undef.

        • status: number | null
        • Optionalstderr?: Buffer<ArrayBufferLike> | null
        • Optionalstdout?: Buffer<ArrayBufferLike> | null
      • kitWorkDir: string
      • extraArgs: string

      Returns string