• Simply captures the output of the script executed by waitOnScript.

    Parameters

    • stdio: Stdio

      The standard io tuple provided by waitOnScript

    • onStdOutLine: ((msg: string) => void)

      The callback is executed each time we receive a new line from the standard output channel.

        • (msg): void
        • Parameters

          • msg: string

          Returns void

    • onStdErrLine: ((msg: string) => void)

      The callback is executed each time we receive a new line from the standard error channel.

        • (msg): void
        • Parameters

          • msg: string

          Returns void

    Returns void