Skip to main content

script/dom/serviceworker/
mod.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5pub(crate) use self::serviceworker::*;
6pub(crate) mod client;
7pub(crate) mod extendableevent;
8pub(crate) mod extendablemessageevent;
9pub(crate) mod navigationpreloadmanager;
10#[allow(
11    clippy::module_inception,
12    reason = "The interface name is Serviceworker"
13)]
14pub(crate) mod serviceworker;
15pub(crate) mod serviceworkercontainer;
16pub(crate) mod serviceworkerglobalscope;
17pub(crate) mod serviceworkerregistration;
18pub(crate) mod windowclient;