BodyInit.idl 359 B

123456789
  1. #import <FileAPI/Blob.idl>
  2. #import <Streams/ReadableStream.idl>
  3. #import <URL/URLSearchParams.idl>
  4. // https://fetch.spec.whatwg.org/#typedefdef-xmlhttprequestbodyinit
  5. typedef (Blob or BufferSource or URLSearchParams or USVString) XMLHttpRequestBodyInit;
  6. // https://fetch.spec.whatwg.org/#bodyinit
  7. typedef (ReadableStream or XMLHttpRequestBodyInit) BodyInit;