mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:14:58 +00:00
24 lines
461 B
C++
24 lines
461 B
C++
/*
|
|
* Copyright (c) 2023, Kenneth Myhra <kennethmyhra@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <AK/Variant.h>
|
|
#include <LibJS/Heap/Handle.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Web::XHR {
|
|
|
|
// https://xhr.spec.whatwg.org/#formdataentryvalue
|
|
using FormDataEntryValue = Variant<JS::Handle<FileAPI::File>, String>;
|
|
|
|
struct FormDataEntry {
|
|
String name;
|
|
FormDataEntryValue value;
|
|
};
|
|
|
|
}
|