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