/* * Copyright (c) 2024, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::HTML { // https://html.spec.whatwg.org/multipage/web-messaging.html#structuredserializeoptions struct StructuredSerializeOptions { Vector> transfer; }; }