Rush StackShopBlogEvents
Skip to main content

Home > @rushstack/node-core-library > IWaitForExitResult

IWaitForExitResult interface

The result of running a process to completion using Executable.waitForExitAsync(), or Executable.waitForExitAsync().

Signature:

export interface IWaitForExitResult<T extends Buffer | string = never> extends IWaitForExitResultWithoutOutput 

Extends: IWaitForExitResultWithoutOutput

Properties

Property

Modifiers

Type

Description

stderr

T

The process stderr output, if encoding was specified.

stdout

T

The process stdout output, if encoding was specified.