diff options
author | Jesse Jackson <jsejcksn@users.noreply.github.com> | 2022-11-18 08:20:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-18 09:20:07 -0500 |
commit | 221d1916c121e4fe83f8f43ca15918898bdfed3f (patch) | |
tree | 5cfab9faa9f9eda0904a510d26bb730e0b8c35f1 /cli | |
parent | 5867a12920e95265a6532f1b4ee358d9b4ed4599 (diff) |
fix(types/unstable): change interface base for `CommandOutput` (#16696)
extend from `CommandStatus` instead of `ChildStatus`. Resolves #16680.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 512d29dec..eaa40abc5 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -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`. */ |