/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script/dom/serviceworker/mod.rs
20 строк
713 B
Tim van der Lippe
script: Move individual interfaces into subfolders (#47060)
07 авг 2026, 12:10
Не верифицирован
07 авг 2026, 12:10
33036ff
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ pub(crate) use self::serviceworker::*; pub(crate) mod cachestorage; pub(crate) mod client; pub(crate) mod extendableevent; pub(crate) mod extendablemessageevent; pub(crate) mod navigationpreloadmanager; pub(crate) mod notification; #[allow( clippy::module_inception, reason = "The interface name is Serviceworker" )] pub(crate) mod serviceworker; pub(crate) mod serviceworkercontainer; pub(crate) mod serviceworkerglobalscope; pub(crate) mod serviceworkerregistration; pub(crate) mod windowclient;