ladybird/Libraries/LibWeb/Fetch/BodyInit.idl

11 lines
401 B
Text
Raw Normal View History

#import <FileAPI/Blob.idl>
2022-09-22 00:10:41 +01:00
#import <Streams/ReadableStream.idl>
#import <DOMURL/URLSearchParams.idl>
#import <XHR/FormData.idl>
// https://fetch.spec.whatwg.org/#typedefdef-xmlhttprequestbodyinit
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
typedef (ReadableStream or XMLHttpRequestBodyInit) BodyInit;