/* * Copyright (c) 2023, Kenneth Myhra * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Web::XHR { // https://xhr.spec.whatwg.org/#formdataentryvalue using FormDataEntryValue = Variant, String>; struct FormDataEntry { String name; FormDataEntryValue value; }; }