StructuredSerializeOptions.h 380 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Vector.h>
  8. #include <LibJS/Runtime/Object.h>
  9. namespace Web::HTML {
  10. // https://html.spec.whatwg.org/multipage/web-messaging.html#structuredserializeoptions
  11. struct StructuredSerializeOptions {
  12. Vector<JS::Handle<JS::Object>> transfer;
  13. };
  14. }