diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-04-21 00:20:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 00:20:33 +0200 |
commit | 8a7539cab36699465ec6e37455c54fa86f3c0cbe (patch) | |
tree | c3df15f3b673d1ec1a9c4ffada1a9274e3aca942 /ext/web | |
parent | 8b258070542a81d217226fe832b26d81cf20113d (diff) |
feat(runtime): two-tier subprocess API (#11618)
Diffstat (limited to 'ext/web')
-rw-r--r-- | ext/web/lib.deno_web.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/web/lib.deno_web.d.ts b/ext/web/lib.deno_web.d.ts index 8c845ced1..13ad113fe 100644 --- a/ext/web/lib.deno_web.d.ts +++ b/ext/web/lib.deno_web.d.ts @@ -630,6 +630,7 @@ interface WritableStreamErrorCallback { interface WritableStream<W = any> { readonly locked: boolean; abort(reason?: any): Promise<void>; + close(): Promise<void>; getWriter(): WritableStreamDefaultWriter<W>; } |