@cloudflare/workers-types 4.20251216.0 → 4.20251218.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/latest/index.d.ts CHANGED
@@ -1899,9 +1899,7 @@ type BodyInit =
1899
1899
  | ArrayBufferView
1900
1900
  | Blob
1901
1901
  | URLSearchParams
1902
- | FormData
1903
- | Iterable<ArrayBuffer | ArrayBufferView>
1904
- | AsyncIterable<ArrayBuffer | ArrayBufferView>;
1902
+ | FormData;
1905
1903
  declare abstract class Body {
1906
1904
  /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/body) */
1907
1905
  get body(): ReadableStream | null;
package/latest/index.ts CHANGED
@@ -1904,9 +1904,7 @@ export type BodyInit =
1904
1904
  | ArrayBufferView
1905
1905
  | Blob
1906
1906
  | URLSearchParams
1907
- | FormData
1908
- | Iterable<ArrayBuffer | ArrayBufferView>
1909
- | AsyncIterable<ArrayBuffer | ArrayBufferView>;
1907
+ | FormData;
1910
1908
  export declare abstract class Body {
1911
1909
  /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/body) */
1912
1910
  get body(): ReadableStream | null;
package/package.json CHANGED
@@ -7,5 +7,5 @@
7
7
  },
8
8
  "author": "Cloudflare Workers DevProd Team <workers-devprod@cloudflare.com> (https://workers.cloudflare.com)",
9
9
  "license": "MIT OR Apache-2.0",
10
- "version": "4.20251216.0"
10
+ "version": "4.20251218.0"
11
11
  }