mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
The old specification URL is https://slightlyoff.github.io/ServiceWorker/spec/service_worker/ has been replaced by the new one at https://w3c.github.io/ServiceWorker/.
18 lines
386 B
Plaintext
18 lines
386 B
Plaintext
interface Foo {
|
|
Promise<ResponsePromise<sequence<DOMString?>>> bar();
|
|
};
|
|
|
|
// Extracted from https://w3c.github.io/ServiceWorker/ on 2014-05-08
|
|
|
|
interface ServiceWorkerClients {
|
|
Promise<Client[]?> getServiced();
|
|
Promise<any> reloadAll();
|
|
};
|
|
|
|
// Extracted from https://w3c.github.io/ServiceWorker/ on 2014-05-13
|
|
|
|
interface FetchEvent : Event {
|
|
ResponsePromise<any> default();
|
|
};
|
|
|