AbstractOperations.h 237 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/Forward.h>
  8. namespace Web::Streams {
  9. bool is_readable_stream_locked(ReadableStream const&);
  10. }