Home > @rushstack/node-core-library > IWaitForExitResultWithoutOutput
IWaitForExitResultWithoutOutput interface
The result of running a process to completion using Executable.waitForExitAsync(). This interface does not include stdout or stderr output because an IWaitForExitOptions.encoding was not specified.
Signature:
export interface IWaitForExitResultWithoutOutput
Properties
Property | Modifiers | Type | Description |
|---|---|---|---|
number | null | The process exit code. If the process was terminated, this will be null. | ||
string | null | The process signal that terminated the process. If the process exited normally, this will be null. |