/* * Copyright (c) 2023, Shannon Booth * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::Streams { // https://streams.spec.whatwg.org/#dictdef-queuingstrategy struct QueuingStrategy { Optional high_water_mark; JS::GCPtr size; }; }