1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

LibWeb: Add spec link for XMLHttpRequestBodyInit

This commit is contained in:
Kenneth Myhra 2022-07-22 10:18:21 +02:00 committed by Linus Groh
parent 5830ff5be9
commit e55bdd434a

View file

@ -23,6 +23,7 @@
namespace Web::XHR {
// https://fetch.spec.whatwg.org/#typedefdef-xmlhttprequestbodyinit
using XMLHttpRequestBodyInit = Variant<NonnullRefPtr<FileAPI::Blob>, NonnullRefPtr<URL::URLSearchParams>, String>;
class XMLHttpRequest final