summaryrefslogtreecommitdiff
path: root/cli/js/lib.deno.ns.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r--cli/js/lib.deno.ns.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts
index 82b3fc829..2137ce336 100644
--- a/cli/js/lib.deno.ns.d.ts
+++ b/cli/js/lib.deno.ns.d.ts
@@ -1804,10 +1804,10 @@ declare namespace Deno {
: (Writer & Closer) | null;
readonly stdout: T["stdout"] extends "piped"
? Reader & Closer
- : (Writer & Closer) | null;
+ : (Reader & Closer) | null;
readonly stderr: T["stderr"] extends "piped"
? Reader & Closer
- : (Writer & Closer) | null;
+ : (Reader & Closer) | null;
/** Resolves to the current status of the process. */
status(): Promise<ProcessStatus>;
/** Buffer the stdout until EOF and return it as `Uint8Array`.