LibWeb: Remove unused type XMLHttpRequestBodyInit

This commit is contained in:
Kenneth Myhra 2022-11-10 20:15:40 +01:00 committed by Andrew Kaster
commit 8f0fdef856
Notes: sideshowbarker 2024-07-17 05:02:42 +09:00

View file

@ -13,9 +13,6 @@
namespace Web::Fetch {
// https://fetch.spec.whatwg.org/#typedefdef-xmlhttprequestbodyinit
using XMLHttpRequestBodyInit = Variant<JS::Handle<FileAPI::Blob>, JS::Handle<JS::Object>, JS::Handle<URL::URLSearchParams>, String>;
// https://fetch.spec.whatwg.org/#bodyinit
using BodyInit = Variant<JS::Handle<Streams::ReadableStream>, JS::Handle<FileAPI::Blob>, JS::Handle<JS::Object>, JS::Handle<URL::URLSearchParams>, String>;