Skip to content

Latest commit

 

History

History
83 lines (41 loc) · 1.39 KB

File metadata and controls

83 lines (41 loc) · 1.39 KB
hide_title true
custom_edit_url
pagination_prev
pagination_next

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

exitCode

number | null

The process exit code. If the process was terminated, this will be null.

signal

string | null

The process signal that terminated the process. If the process exited normally, this will be null.