ladybird/Userland/Libraries/LibWeb/Fetch/Infrastructure/Task.h
2022-10-30 20:10:29 +00:00

16 lines
289 B
C++

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