diff options
| author | Leo Kettmeir <crowlkats@toaxl.com> | 2024-08-06 00:13:02 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-06 00:13:02 -0700 |
| commit | ba40347a35d10cffeae83ee95f69f7bc281096dd (patch) | |
| tree | 0e981a32601937293967815292d5bf617914163a /ext/fetch/lib.deno_fetch.d.ts | |
| parent | f0cd2c45fcd4dfb841cee9d36bdda3be25c1a2a5 (diff) | |
feat(fetch): accept async iterables for body (#24623)
Implements https://github.com/whatwg/webidl/pull/1397
Fixes #21454
Closes #24849
Diffstat (limited to 'ext/fetch/lib.deno_fetch.d.ts')
| -rw-r--r-- | ext/fetch/lib.deno_fetch.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/fetch/lib.deno_fetch.d.ts b/ext/fetch/lib.deno_fetch.d.ts index c27313903..3bf608cdb 100644 --- a/ext/fetch/lib.deno_fetch.d.ts +++ b/ext/fetch/lib.deno_fetch.d.ts @@ -163,6 +163,7 @@ declare type BodyInit = | FormData | URLSearchParams | ReadableStream<Uint8Array> + | AsyncIterable<Uint8Array> | string; /** @category Fetch */ declare type RequestDestination = |
