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 cache;
7pub(crate) mod cachestorage;
8pub(crate) mod client;
9pub(crate) mod extendableevent;
10pub(crate) mod extendablemessageevent;
11pub(crate) mod navigationpreloadmanager;
12pub(crate) mod notification;
13#[allow(
14    clippy::module_inception,
15    reason = "The interface name is Serviceworker"
16)]
17pub(crate) mod serviceworker;
18pub(crate) mod serviceworker_manager;
19pub(crate) mod serviceworkercontainer;
20pub(crate) mod serviceworkerglobalscope;
21pub(crate) mod serviceworkerregistration;
22pub(crate) mod windowclient;