@types/serviceworker 0.0.159 → 0.0.161

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 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.159 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.159.
31
+ You can read what changed in version 0.0.161 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.161.
package/index.d.ts CHANGED
@@ -2609,8 +2609,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2609
2609
  declare var DOMMatrix: {
2610
2610
  prototype: DOMMatrix;
2611
2611
  new(init?: string | number[]): DOMMatrix;
2612
+ /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
2612
2613
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
2614
+ /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
2613
2615
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
2616
+ /** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
2614
2617
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2615
2618
  };
2616
2619
 
@@ -2779,8 +2782,11 @@ interface DOMMatrixReadOnly {
2779
2782
  declare var DOMMatrixReadOnly: {
2780
2783
  prototype: DOMMatrixReadOnly;
2781
2784
  new(init?: string | number[]): DOMMatrixReadOnly;
2785
+ /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
2782
2786
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
2787
+ /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
2783
2788
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
2789
+ /** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
2784
2790
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2785
2791
  };
2786
2792
 
@@ -2929,7 +2935,9 @@ interface DOMQuad {
2929
2935
  declare var DOMQuad: {
2930
2936
  prototype: DOMQuad;
2931
2937
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2938
+ /** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
2932
2939
  fromQuad(other?: DOMQuadInit): DOMQuad;
2940
+ /** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
2933
2941
  fromRect(other?: DOMRectInit): DOMQuad;
2934
2942
  };
2935
2943
 
@@ -7041,7 +7049,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
7041
7049
  "fetch": FetchEvent;
7042
7050
  "install": ExtendableEvent;
7043
7051
  "message": ExtendableMessageEvent;
7044
- "messageerror": MessageEvent;
7052
+ "messageerror": ExtendableMessageEvent;
7045
7053
  "notificationclick": NotificationEvent;
7046
7054
  "notificationclose": NotificationEvent;
7047
7055
  "push": PushEvent;
@@ -7078,7 +7086,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
7078
7086
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
7079
7087
  onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
7080
7088
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
7081
- onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;
7089
+ onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
7082
7090
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
7083
7091
  onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
7084
7092
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
@@ -11547,7 +11555,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
11547
11555
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
11548
11556
  declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
11549
11557
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
11550
- declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;
11558
+ declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
11551
11559
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
11552
11560
  declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
11553
11561
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/serviceworker",
3
- "version": "0.0.159",
3
+ "version": "0.0.161",
4
4
  "description": "Types for the global scope of Service Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -2606,8 +2606,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2606
2606
  declare var DOMMatrix: {
2607
2607
  prototype: DOMMatrix;
2608
2608
  new(init?: string | number[]): DOMMatrix;
2609
+ /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
2609
2610
  fromFloat32Array(array32: Float32Array): DOMMatrix;
2611
+ /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
2610
2612
  fromFloat64Array(array64: Float64Array): DOMMatrix;
2613
+ /** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
2611
2614
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2612
2615
  };
2613
2616
 
@@ -2776,8 +2779,11 @@ interface DOMMatrixReadOnly {
2776
2779
  declare var DOMMatrixReadOnly: {
2777
2780
  prototype: DOMMatrixReadOnly;
2778
2781
  new(init?: string | number[]): DOMMatrixReadOnly;
2782
+ /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
2779
2783
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
2784
+ /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
2780
2785
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
2786
+ /** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
2781
2787
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2782
2788
  };
2783
2789
 
@@ -2926,7 +2932,9 @@ interface DOMQuad {
2926
2932
  declare var DOMQuad: {
2927
2933
  prototype: DOMQuad;
2928
2934
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2935
+ /** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
2929
2936
  fromQuad(other?: DOMQuadInit): DOMQuad;
2937
+ /** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
2930
2938
  fromRect(other?: DOMRectInit): DOMQuad;
2931
2939
  };
2932
2940
 
@@ -7038,7 +7046,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
7038
7046
  "fetch": FetchEvent;
7039
7047
  "install": ExtendableEvent;
7040
7048
  "message": ExtendableMessageEvent;
7041
- "messageerror": MessageEvent;
7049
+ "messageerror": ExtendableMessageEvent;
7042
7050
  "notificationclick": NotificationEvent;
7043
7051
  "notificationclose": NotificationEvent;
7044
7052
  "push": PushEvent;
@@ -7075,7 +7083,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
7075
7083
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
7076
7084
  onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
7077
7085
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
7078
- onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;
7086
+ onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
7079
7087
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
7080
7088
  onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
7081
7089
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
@@ -11544,7 +11552,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
11544
11552
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
11545
11553
  declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
11546
11554
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
11547
- declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;
11555
+ declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
11548
11556
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
11549
11557
  declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
11550
11558
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
package/ts5.6/index.d.ts CHANGED
@@ -2606,8 +2606,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2606
2606
  declare var DOMMatrix: {
2607
2607
  prototype: DOMMatrix;
2608
2608
  new(init?: string | number[]): DOMMatrix;
2609
+ /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
2609
2610
  fromFloat32Array(array32: Float32Array): DOMMatrix;
2611
+ /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
2610
2612
  fromFloat64Array(array64: Float64Array): DOMMatrix;
2613
+ /** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
2611
2614
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2612
2615
  };
2613
2616
 
@@ -2776,8 +2779,11 @@ interface DOMMatrixReadOnly {
2776
2779
  declare var DOMMatrixReadOnly: {
2777
2780
  prototype: DOMMatrixReadOnly;
2778
2781
  new(init?: string | number[]): DOMMatrixReadOnly;
2782
+ /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
2779
2783
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
2784
+ /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
2780
2785
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
2786
+ /** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
2781
2787
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2782
2788
  };
2783
2789
 
@@ -2926,7 +2932,9 @@ interface DOMQuad {
2926
2932
  declare var DOMQuad: {
2927
2933
  prototype: DOMQuad;
2928
2934
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2935
+ /** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
2929
2936
  fromQuad(other?: DOMQuadInit): DOMQuad;
2937
+ /** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
2930
2938
  fromRect(other?: DOMRectInit): DOMQuad;
2931
2939
  };
2932
2940
 
@@ -7038,7 +7046,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
7038
7046
  "fetch": FetchEvent;
7039
7047
  "install": ExtendableEvent;
7040
7048
  "message": ExtendableMessageEvent;
7041
- "messageerror": MessageEvent;
7049
+ "messageerror": ExtendableMessageEvent;
7042
7050
  "notificationclick": NotificationEvent;
7043
7051
  "notificationclose": NotificationEvent;
7044
7052
  "push": PushEvent;
@@ -7075,7 +7083,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
7075
7083
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
7076
7084
  onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
7077
7085
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
7078
- onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;
7086
+ onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
7079
7087
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
7080
7088
  onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
7081
7089
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
@@ -11544,7 +11552,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
11544
11552
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
11545
11553
  declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
11546
11554
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
11547
- declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;
11555
+ declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
11548
11556
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
11549
11557
  declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
11550
11558
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
package/ts5.9/index.d.ts CHANGED
@@ -2606,8 +2606,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2606
2606
  declare var DOMMatrix: {
2607
2607
  prototype: DOMMatrix;
2608
2608
  new(init?: string | number[]): DOMMatrix;
2609
+ /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
2609
2610
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
2611
+ /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
2610
2612
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
2613
+ /** The **`fromMatrix()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an existing matrix or an object which provides the values for its properties. */
2611
2614
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2612
2615
  };
2613
2616
 
@@ -2776,8 +2779,11 @@ interface DOMMatrixReadOnly {
2776
2779
  declare var DOMMatrixReadOnly: {
2777
2780
  prototype: DOMMatrixReadOnly;
2778
2781
  new(init?: string | number[]): DOMMatrixReadOnly;
2782
+ /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
2779
2783
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
2784
+ /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
2780
2785
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
2786
+ /** The **`fromMatrix()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an existing matrix or an object which provides the values for its properties. */
2781
2787
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2782
2788
  };
2783
2789
 
@@ -2926,7 +2932,9 @@ interface DOMQuad {
2926
2932
  declare var DOMQuad: {
2927
2933
  prototype: DOMQuad;
2928
2934
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2935
+ /** The **`fromQuad()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of another `DOMQuad` object. */
2929
2936
  fromQuad(other?: DOMQuadInit): DOMQuad;
2937
+ /** The **`fromRect()`** static method of the DOMQuad interface returns a new `DOMQuad` object based on the provided set of coordinates in the shape of a DOMRect object. */
2930
2938
  fromRect(other?: DOMRectInit): DOMQuad;
2931
2939
  };
2932
2940
 
@@ -7038,7 +7046,7 @@ interface ServiceWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
7038
7046
  "fetch": FetchEvent;
7039
7047
  "install": ExtendableEvent;
7040
7048
  "message": ExtendableMessageEvent;
7041
- "messageerror": MessageEvent;
7049
+ "messageerror": ExtendableMessageEvent;
7042
7050
  "notificationclick": NotificationEvent;
7043
7051
  "notificationclose": NotificationEvent;
7044
7052
  "push": PushEvent;
@@ -7075,7 +7083,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
7075
7083
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
7076
7084
  onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
7077
7085
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
7078
- onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;
7086
+ onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
7079
7087
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
7080
7088
  onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
7081
7089
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */
@@ -11544,7 +11552,7 @@ declare var oninstall: ((this: ServiceWorkerGlobalScope, ev: ExtendableEvent) =>
11544
11552
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/message_event) */
11545
11553
  declare var onmessage: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
11546
11554
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/messageerror_event) */
11547
- declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: MessageEvent) => any) | null;
11555
+ declare var onmessageerror: ((this: ServiceWorkerGlobalScope, ev: ExtendableMessageEvent) => any) | null;
11548
11556
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclick_event) */
11549
11557
  declare var onnotificationclick: ((this: ServiceWorkerGlobalScope, ev: NotificationEvent) => any) | null;
11550
11558
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope/notificationclose_event) */