2022-09-21 23:14:40 +01:00
|
|
|
#import <FileAPI/Blob.idl>
|
2022-09-22 00:10:41 +01:00
|
|
|
#import <Streams/ReadableStream.idl>
|
2024-02-11 19:48:56 +13:00
|
|
|
#import <DOMURL/URLSearchParams.idl>
|
2023-04-02 22:30:56 +02:00
|
|
|
#import <XHR/FormData.idl>
|
2022-09-21 23:14:40 +01:00
|
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#typedefdef-xmlhttprequestbodyinit
|
2023-04-02 22:30:56 +02:00
|
|
|
typedef (Blob or BufferSource or FormData or URLSearchParams or USVString) XMLHttpRequestBodyInit;
|
2022-09-22 00:10:41 +01:00
|
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#bodyinit
|
2022-10-21 00:44:32 +02:00
|
|
|
typedef (ReadableStream or XMLHttpRequestBodyInit) BodyInit;
|