/* * Copyright (c) 2022, Andrew Kaster * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::HTML { // FIXME: Add Mixin APIs from https://html.spec.whatwg.org/multipage/workers.html#the-workernavigator-object class WorkerNavigator : public RefCounted , public Bindings::Wrappable { public: using WrapperType = Bindings::WorkerNavigatorWrapper; }; }