From 221d1916c121e4fe83f8f43ca15918898bdfed3f Mon Sep 17 00:00:00 2001 From: Jesse Jackson Date: Fri, 18 Nov 2022 08:20:07 -0600 Subject: [PATCH] fix(types/unstable): change interface base for `CommandOutput` (#16696) extend from `CommandStatus` instead of `ChildStatus`. Resolves #16680. --- cli/dts/lib.deno.unstable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 512d29decc..eaa40abc56 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`. */