@types/serviceworker 0.0.38 → 0.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.39 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.39.
|
package/index.d.ts
CHANGED
|
@@ -2804,6 +2804,7 @@ interface ServiceWorkerRegistrationEventMap {
|
|
|
2804
2804
|
interface ServiceWorkerRegistration extends EventTarget {
|
|
2805
2805
|
readonly active: ServiceWorker | null;
|
|
2806
2806
|
readonly installing: ServiceWorker | null;
|
|
2807
|
+
readonly navigationPreload: NavigationPreloadManager;
|
|
2807
2808
|
onupdatefound: ((this: ServiceWorkerRegistration, ev: Event) => any) | null;
|
|
2808
2809
|
readonly pushManager: PushManager;
|
|
2809
2810
|
readonly scope: string;
|