mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
fix(types/unstable): change interface base for CommandOutput
(#16696)
extend from `CommandStatus` instead of `ChildStatus`. Resolves #16680.
This commit is contained in:
parent
5867a12920
commit
221d1916c1
1 changed files with 1 additions and 1 deletions
2
cli/dts/lib.deno.unstable.d.ts
vendored
2
cli/dts/lib.deno.unstable.d.ts
vendored
|
@ -1805,7 +1805,7 @@ declare namespace Deno {
|
|||
*
|
||||
* @category Sub Process
|
||||
*/
|
||||
export interface CommandOutput extends ChildStatus {
|
||||
export interface CommandOutput extends CommandStatus {
|
||||
/** The buffered output from the child process' `stdout`. */
|
||||
readonly stdout: Uint8Array;
|
||||
/** The buffered output from the child process' `stderr`. */
|
||||
|
|
Loading…
Reference in a new issue