Type Alias ShellOutput

ShellOutput: {
    error: undefined | Error;
    exitCode: number | undefined;
    exitSignal: NodeJS.Signals | undefined;
    stderr: string;
    stdout: string;
}

All output from runShellCommand.

Type declaration

  • error: undefined | Error
  • exitCode: number | undefined
  • exitSignal: NodeJS.Signals | undefined
  • stderr: string
  • stdout: string