Task.h 289 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibJS/Forward.h>
  8. #include <LibJS/SafeFunction.h>
  9. namespace Web::Fetch::Infrastructure {
  10. void queue_fetch_task(JS::Object&, JS::SafeFunction<void()>);
  11. }