@@ -7038,7 +7038,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
70387038 "fetch": FetchEvent;
70397039 "install": ExtendableEvent;
70407040 "message": ExtendableMessageEvent;
7041- "messageerror": MessageEvent ;
7041+ "messageerror": ExtendableMessageEvent ;
70427042 "notificationclick": NotificationEvent;
70437043 "notificationclose": NotificationEvent;
70447044 "push": PushEvent;
@@ -7075,7 +7075,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
70757075 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
70767076 onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
70777077 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
7078- onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent ) => any) | null;
7078+ onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent ) => any) | null;
70797079 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
70807080 onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
70817081 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
@@ -11544,7 +11544,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
1154411544/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
1154511545declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
1154611546/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
11547- declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent ) => any) | null;
11547+ declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent ) => any) | null;
1154811548/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
1154911549declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
1155011550/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
0 commit comments