@types/serviceworker 0.0.160 → 0.0.162
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 +40 -0
- package/package.json +1 -1
- package/ts5.5/index.d.ts +40 -0
- package/ts5.6/index.d.ts +40 -0
- package/ts5.9/index.d.ts +40 -0
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.162 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.162.
|
package/index.d.ts
CHANGED
|
@@ -2609,8 +2609,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
2609
2609
|
declare var DOMMatrix: {
|
|
2610
2610
|
prototype: DOMMatrix;
|
|
2611
2611
|
new(init?: string | number[]): DOMMatrix;
|
|
2612
|
+
/**
|
|
2613
|
+
* The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
|
|
2614
|
+
*
|
|
2615
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
|
|
2616
|
+
*/
|
|
2612
2617
|
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
2618
|
+
/**
|
|
2619
|
+
* The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
|
|
2620
|
+
*
|
|
2621
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
|
|
2622
|
+
*/
|
|
2613
2623
|
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
2624
|
+
/**
|
|
2625
|
+
* 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.
|
|
2626
|
+
*
|
|
2627
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
|
|
2628
|
+
*/
|
|
2614
2629
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
2615
2630
|
};
|
|
2616
2631
|
|
|
@@ -2779,8 +2794,23 @@ interface DOMMatrixReadOnly {
|
|
|
2779
2794
|
declare var DOMMatrixReadOnly: {
|
|
2780
2795
|
prototype: DOMMatrixReadOnly;
|
|
2781
2796
|
new(init?: string | number[]): DOMMatrixReadOnly;
|
|
2797
|
+
/**
|
|
2798
|
+
* The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
|
|
2799
|
+
*
|
|
2800
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
|
|
2801
|
+
*/
|
|
2782
2802
|
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
2803
|
+
/**
|
|
2804
|
+
* The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
|
|
2805
|
+
*
|
|
2806
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
|
|
2807
|
+
*/
|
|
2783
2808
|
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
2809
|
+
/**
|
|
2810
|
+
* 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.
|
|
2811
|
+
*
|
|
2812
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
|
|
2813
|
+
*/
|
|
2784
2814
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
2785
2815
|
};
|
|
2786
2816
|
|
|
@@ -2929,7 +2959,17 @@ interface DOMQuad {
|
|
|
2929
2959
|
declare var DOMQuad: {
|
|
2930
2960
|
prototype: DOMQuad;
|
|
2931
2961
|
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
|
|
2962
|
+
/**
|
|
2963
|
+
* 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.
|
|
2964
|
+
*
|
|
2965
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
|
|
2966
|
+
*/
|
|
2932
2967
|
fromQuad(other?: DOMQuadInit): DOMQuad;
|
|
2968
|
+
/**
|
|
2969
|
+
* 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.
|
|
2970
|
+
*
|
|
2971
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
|
|
2972
|
+
*/
|
|
2933
2973
|
fromRect(other?: DOMRectInit): DOMQuad;
|
|
2934
2974
|
};
|
|
2935
2975
|
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -2606,8 +2606,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
2606
2606
|
declare var DOMMatrix: {
|
|
2607
2607
|
prototype: DOMMatrix;
|
|
2608
2608
|
new(init?: string | number[]): DOMMatrix;
|
|
2609
|
+
/**
|
|
2610
|
+
* The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
|
|
2611
|
+
*
|
|
2612
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
|
|
2613
|
+
*/
|
|
2609
2614
|
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
2615
|
+
/**
|
|
2616
|
+
* The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
|
|
2617
|
+
*
|
|
2618
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
|
|
2619
|
+
*/
|
|
2610
2620
|
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
2621
|
+
/**
|
|
2622
|
+
* 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.
|
|
2623
|
+
*
|
|
2624
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
|
|
2625
|
+
*/
|
|
2611
2626
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
2612
2627
|
};
|
|
2613
2628
|
|
|
@@ -2776,8 +2791,23 @@ interface DOMMatrixReadOnly {
|
|
|
2776
2791
|
declare var DOMMatrixReadOnly: {
|
|
2777
2792
|
prototype: DOMMatrixReadOnly;
|
|
2778
2793
|
new(init?: string | number[]): DOMMatrixReadOnly;
|
|
2794
|
+
/**
|
|
2795
|
+
* The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
|
|
2796
|
+
*
|
|
2797
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
|
|
2798
|
+
*/
|
|
2779
2799
|
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
2800
|
+
/**
|
|
2801
|
+
* The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
|
|
2802
|
+
*
|
|
2803
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
|
|
2804
|
+
*/
|
|
2780
2805
|
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
2806
|
+
/**
|
|
2807
|
+
* 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.
|
|
2808
|
+
*
|
|
2809
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
|
|
2810
|
+
*/
|
|
2781
2811
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
2782
2812
|
};
|
|
2783
2813
|
|
|
@@ -2926,7 +2956,17 @@ interface DOMQuad {
|
|
|
2926
2956
|
declare var DOMQuad: {
|
|
2927
2957
|
prototype: DOMQuad;
|
|
2928
2958
|
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
|
|
2959
|
+
/**
|
|
2960
|
+
* 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.
|
|
2961
|
+
*
|
|
2962
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
|
|
2963
|
+
*/
|
|
2929
2964
|
fromQuad(other?: DOMQuadInit): DOMQuad;
|
|
2965
|
+
/**
|
|
2966
|
+
* 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.
|
|
2967
|
+
*
|
|
2968
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
|
|
2969
|
+
*/
|
|
2930
2970
|
fromRect(other?: DOMRectInit): DOMQuad;
|
|
2931
2971
|
};
|
|
2932
2972
|
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -2606,8 +2606,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
2606
2606
|
declare var DOMMatrix: {
|
|
2607
2607
|
prototype: DOMMatrix;
|
|
2608
2608
|
new(init?: string | number[]): DOMMatrix;
|
|
2609
|
+
/**
|
|
2610
|
+
* The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
|
|
2611
|
+
*
|
|
2612
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
|
|
2613
|
+
*/
|
|
2609
2614
|
fromFloat32Array(array32: Float32Array): DOMMatrix;
|
|
2615
|
+
/**
|
|
2616
|
+
* The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
|
|
2617
|
+
*
|
|
2618
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
|
|
2619
|
+
*/
|
|
2610
2620
|
fromFloat64Array(array64: Float64Array): DOMMatrix;
|
|
2621
|
+
/**
|
|
2622
|
+
* 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.
|
|
2623
|
+
*
|
|
2624
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
|
|
2625
|
+
*/
|
|
2611
2626
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
2612
2627
|
};
|
|
2613
2628
|
|
|
@@ -2776,8 +2791,23 @@ interface DOMMatrixReadOnly {
|
|
|
2776
2791
|
declare var DOMMatrixReadOnly: {
|
|
2777
2792
|
prototype: DOMMatrixReadOnly;
|
|
2778
2793
|
new(init?: string | number[]): DOMMatrixReadOnly;
|
|
2794
|
+
/**
|
|
2795
|
+
* The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
|
|
2796
|
+
*
|
|
2797
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
|
|
2798
|
+
*/
|
|
2779
2799
|
fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
|
|
2800
|
+
/**
|
|
2801
|
+
* The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
|
|
2802
|
+
*
|
|
2803
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
|
|
2804
|
+
*/
|
|
2780
2805
|
fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
|
|
2806
|
+
/**
|
|
2807
|
+
* 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.
|
|
2808
|
+
*
|
|
2809
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
|
|
2810
|
+
*/
|
|
2781
2811
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
2782
2812
|
};
|
|
2783
2813
|
|
|
@@ -2926,7 +2956,17 @@ interface DOMQuad {
|
|
|
2926
2956
|
declare var DOMQuad: {
|
|
2927
2957
|
prototype: DOMQuad;
|
|
2928
2958
|
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
|
|
2959
|
+
/**
|
|
2960
|
+
* 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.
|
|
2961
|
+
*
|
|
2962
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
|
|
2963
|
+
*/
|
|
2929
2964
|
fromQuad(other?: DOMQuadInit): DOMQuad;
|
|
2965
|
+
/**
|
|
2966
|
+
* 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.
|
|
2967
|
+
*
|
|
2968
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
|
|
2969
|
+
*/
|
|
2930
2970
|
fromRect(other?: DOMRectInit): DOMQuad;
|
|
2931
2971
|
};
|
|
2932
2972
|
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -2606,8 +2606,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
2606
2606
|
declare var DOMMatrix: {
|
|
2607
2607
|
prototype: DOMMatrix;
|
|
2608
2608
|
new(init?: string | number[]): DOMMatrix;
|
|
2609
|
+
/**
|
|
2610
|
+
* The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
|
|
2611
|
+
*
|
|
2612
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
|
|
2613
|
+
*/
|
|
2609
2614
|
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
|
|
2615
|
+
/**
|
|
2616
|
+
* The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
|
|
2617
|
+
*
|
|
2618
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
|
|
2619
|
+
*/
|
|
2610
2620
|
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
|
|
2621
|
+
/**
|
|
2622
|
+
* 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.
|
|
2623
|
+
*
|
|
2624
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
|
|
2625
|
+
*/
|
|
2611
2626
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
2612
2627
|
};
|
|
2613
2628
|
|
|
@@ -2776,8 +2791,23 @@ interface DOMMatrixReadOnly {
|
|
|
2776
2791
|
declare var DOMMatrixReadOnly: {
|
|
2777
2792
|
prototype: DOMMatrixReadOnly;
|
|
2778
2793
|
new(init?: string | number[]): DOMMatrixReadOnly;
|
|
2794
|
+
/**
|
|
2795
|
+
* The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
|
|
2796
|
+
*
|
|
2797
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
|
|
2798
|
+
*/
|
|
2779
2799
|
fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
2800
|
+
/**
|
|
2801
|
+
* The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
|
|
2802
|
+
*
|
|
2803
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
|
|
2804
|
+
*/
|
|
2780
2805
|
fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
|
|
2806
|
+
/**
|
|
2807
|
+
* 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.
|
|
2808
|
+
*
|
|
2809
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
|
|
2810
|
+
*/
|
|
2781
2811
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
2782
2812
|
};
|
|
2783
2813
|
|
|
@@ -2926,7 +2956,17 @@ interface DOMQuad {
|
|
|
2926
2956
|
declare var DOMQuad: {
|
|
2927
2957
|
prototype: DOMQuad;
|
|
2928
2958
|
new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
|
|
2959
|
+
/**
|
|
2960
|
+
* 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.
|
|
2961
|
+
*
|
|
2962
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
|
|
2963
|
+
*/
|
|
2929
2964
|
fromQuad(other?: DOMQuadInit): DOMQuad;
|
|
2965
|
+
/**
|
|
2966
|
+
* 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.
|
|
2967
|
+
*
|
|
2968
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
|
|
2969
|
+
*/
|
|
2930
2970
|
fromRect(other?: DOMRectInit): DOMQuad;
|
|
2931
2971
|
};
|
|
2932
2972
|
|