@types/serviceworker 0.0.159 → 0.0.160
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 +3 -3
- package/package.json +1 -1
- package/ts5.5/index.d.ts +3 -3
- package/ts5.6/index.d.ts +3 -3
- package/ts5.9/index.d.ts +3 -3
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.160 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.160.
|
package/index.d.ts
CHANGED
|
@@ -7041,7 +7041,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
|
|
|
7041
7041
|
"fetch": FetchEvent;
|
|
7042
7042
|
"install": ExtendableEvent;
|
|
7043
7043
|
"message": ExtendableMessageEvent;
|
|
7044
|
-
"messageerror":
|
|
7044
|
+
"messageerror": ExtendableMessageEvent;
|
|
7045
7045
|
"notificationclick": NotificationEvent;
|
|
7046
7046
|
"notificationclose": NotificationEvent;
|
|
7047
7047
|
"push": PushEvent;
|
|
@@ -7078,7 +7078,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
|
|
|
7078
7078
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
|
|
7079
7079
|
onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
7080
7080
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
|
|
7081
|
-
onmessageerror: ((this: ServiceWorkerGlobalScope, ev:
|
|
7081
|
+
onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
7082
7082
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
|
|
7083
7083
|
onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
|
|
7084
7084
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
|
|
@@ -11547,7 +11547,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
|
|
|
11547
11547
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
|
|
11548
11548
|
declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
11549
11549
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
|
|
11550
|
-
declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev:
|
|
11550
|
+
declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
11551
11551
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
|
|
11552
11552
|
declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
|
|
11553
11553
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -7038,7 +7038,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
|
|
|
7038
7038
|
"fetch": FetchEvent;
|
|
7039
7039
|
"install": ExtendableEvent;
|
|
7040
7040
|
"message": ExtendableMessageEvent;
|
|
7041
|
-
"messageerror":
|
|
7041
|
+
"messageerror": ExtendableMessageEvent;
|
|
7042
7042
|
"notificationclick": NotificationEvent;
|
|
7043
7043
|
"notificationclose": NotificationEvent;
|
|
7044
7044
|
"push": PushEvent;
|
|
@@ -7075,7 +7075,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
|
|
|
7075
7075
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
|
|
7076
7076
|
onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
7077
7077
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
|
|
7078
|
-
onmessageerror: ((this: ServiceWorkerGlobalScope, ev:
|
|
7078
|
+
onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
7079
7079
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
|
|
7080
7080
|
onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
|
|
7081
7081
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
|
|
@@ -11544,7 +11544,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
|
|
|
11544
11544
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
|
|
11545
11545
|
declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
11546
11546
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
|
|
11547
|
-
declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev:
|
|
11547
|
+
declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
11548
11548
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
|
|
11549
11549
|
declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
|
|
11550
11550
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -7038,7 +7038,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
|
|
|
7038
7038
|
"fetch": FetchEvent;
|
|
7039
7039
|
"install": ExtendableEvent;
|
|
7040
7040
|
"message": ExtendableMessageEvent;
|
|
7041
|
-
"messageerror":
|
|
7041
|
+
"messageerror": ExtendableMessageEvent;
|
|
7042
7042
|
"notificationclick": NotificationEvent;
|
|
7043
7043
|
"notificationclose": NotificationEvent;
|
|
7044
7044
|
"push": PushEvent;
|
|
@@ -7075,7 +7075,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
|
|
|
7075
7075
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
|
|
7076
7076
|
onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
7077
7077
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
|
|
7078
|
-
onmessageerror: ((this: ServiceWorkerGlobalScope, ev:
|
|
7078
|
+
onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
7079
7079
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
|
|
7080
7080
|
onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
|
|
7081
7081
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
|
|
@@ -11544,7 +11544,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
|
|
|
11544
11544
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
|
|
11545
11545
|
declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
11546
11546
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
|
|
11547
|
-
declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev:
|
|
11547
|
+
declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
11548
11548
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
|
|
11549
11549
|
declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
|
|
11550
11550
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -7038,7 +7038,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
|
|
|
7038
7038
|
"fetch": FetchEvent;
|
|
7039
7039
|
"install": ExtendableEvent;
|
|
7040
7040
|
"message": ExtendableMessageEvent;
|
|
7041
|
-
"messageerror":
|
|
7041
|
+
"messageerror": ExtendableMessageEvent;
|
|
7042
7042
|
"notificationclick": NotificationEvent;
|
|
7043
7043
|
"notificationclose": NotificationEvent;
|
|
7044
7044
|
"push": PushEvent;
|
|
@@ -7075,7 +7075,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
|
|
|
7075
7075
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
|
|
7076
7076
|
onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
7077
7077
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
|
|
7078
|
-
onmessageerror: ((this: ServiceWorkerGlobalScope, ev:
|
|
7078
|
+
onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
7079
7079
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
|
|
7080
7080
|
onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
|
|
7081
7081
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
|
|
@@ -11544,7 +11544,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
|
|
|
11544
11544
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
|
|
11545
11545
|
declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
11546
11546
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
|
|
11547
|
-
declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev:
|
|
11547
|
+
declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
|
|
11548
11548
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
|
|
11549
11549
|
declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
|
|
11550
11550
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
|