QueuingStrategyInit.h 281 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Web::Streams {
  8. // https://streams.spec.whatwg.org/#dictdef-queuingstrategyinit
  9. struct QueuingStrategyInit {
  10. double high_water_mark;
  11. };
  12. }