Skip to content

进程输出

¥Process Output

代表 cmd 执行结果。

¥Represents a cmd execution result.

ts
interface ProcessOutput {
  // Exit code of the process: 0 for success, non-zero for failure
  exitCode: number
  
  // Signal that caused the process to exit: SIGTERM, SIGKILL, etc.
  signal: NodeJS.Signals | null
  
  // Holds the stdout of the process
  stdout: string
  
  // Process errors are written to stderr
  stderr: string
  
  // combined stdout and stderr
  toString(): string

  // Same as toString() but trimmed
  valueOf(): string
}

google/zx 中文网 - 粤ICP备13048890号