Type alias StdoutCallback

StdoutCallback: ((err, data?) => void)

A callback for any output redirected from stdout/stderr from the java process.

Type declaration

    • (err, data?): void
    • Parameters

      • err: Error | null

        an error if the conversion of the output failed. This is null if the output was valid. This will probably never be set.

      • Optional data: string

        the data that was converted. This is unset if err is set.

      Returns void

Generated using TypeDoc