@types/sharedworker 0.0.189 → 0.0.191

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.189 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.189.
31
+ You can read what changed in version 0.0.191 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.191.
package/index.d.ts CHANGED
@@ -2390,8 +2390,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2390
2390
  declare var DOMMatrix: {
2391
2391
  prototype: DOMMatrix;
2392
2392
  new(init?: string | number[]): DOMMatrix;
2393
+ /**
2394
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
2395
+ *
2396
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
2397
+ */
2393
2398
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
2399
+ /**
2400
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
2401
+ *
2402
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
2403
+ */
2394
2404
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
2405
+ /**
2406
+ * 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.
2407
+ *
2408
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
2409
+ */
2395
2410
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2396
2411
  };
2397
2412
 
@@ -2560,8 +2575,23 @@ interface DOMMatrixReadOnly {
2560
2575
  declare var DOMMatrixReadOnly: {
2561
2576
  prototype: DOMMatrixReadOnly;
2562
2577
  new(init?: string | number[]): DOMMatrixReadOnly;
2578
+ /**
2579
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
2580
+ *
2581
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
2582
+ */
2563
2583
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
2584
+ /**
2585
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
2586
+ *
2587
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
2588
+ */
2564
2589
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
2590
+ /**
2591
+ * 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.
2592
+ *
2593
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
2594
+ */
2565
2595
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2566
2596
  };
2567
2597
 
@@ -2710,7 +2740,17 @@ interface DOMQuad {
2710
2740
  declare var DOMQuad: {
2711
2741
  prototype: DOMQuad;
2712
2742
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2743
+ /**
2744
+ * 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.
2745
+ *
2746
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
2747
+ */
2713
2748
  fromQuad(other?: DOMQuadInit): DOMQuad;
2749
+ /**
2750
+ * 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.
2751
+ *
2752
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
2753
+ */
2714
2754
  fromRect(other?: DOMRectInit): DOMQuad;
2715
2755
  };
2716
2756
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/sharedworker",
3
- "version": "0.0.189",
3
+ "version": "0.0.191",
4
4
  "description": "Types for the global scope of Shared Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -2387,8 +2387,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2387
2387
  declare var DOMMatrix: {
2388
2388
  prototype: DOMMatrix;
2389
2389
  new(init?: string | number[]): DOMMatrix;
2390
+ /**
2391
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
2392
+ *
2393
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
2394
+ */
2390
2395
  fromFloat32Array(array32: Float32Array): DOMMatrix;
2396
+ /**
2397
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
2398
+ *
2399
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
2400
+ */
2391
2401
  fromFloat64Array(array64: Float64Array): DOMMatrix;
2402
+ /**
2403
+ * 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.
2404
+ *
2405
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
2406
+ */
2392
2407
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2393
2408
  };
2394
2409
 
@@ -2557,8 +2572,23 @@ interface DOMMatrixReadOnly {
2557
2572
  declare var DOMMatrixReadOnly: {
2558
2573
  prototype: DOMMatrixReadOnly;
2559
2574
  new(init?: string | number[]): DOMMatrixReadOnly;
2575
+ /**
2576
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
2577
+ *
2578
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
2579
+ */
2560
2580
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
2581
+ /**
2582
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
2583
+ *
2584
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
2585
+ */
2561
2586
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
2587
+ /**
2588
+ * 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.
2589
+ *
2590
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
2591
+ */
2562
2592
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2563
2593
  };
2564
2594
 
@@ -2707,7 +2737,17 @@ interface DOMQuad {
2707
2737
  declare var DOMQuad: {
2708
2738
  prototype: DOMQuad;
2709
2739
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2740
+ /**
2741
+ * 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.
2742
+ *
2743
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
2744
+ */
2710
2745
  fromQuad(other?: DOMQuadInit): DOMQuad;
2746
+ /**
2747
+ * 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.
2748
+ *
2749
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
2750
+ */
2711
2751
  fromRect(other?: DOMRectInit): DOMQuad;
2712
2752
  };
2713
2753
 
package/ts5.6/index.d.ts CHANGED
@@ -2387,8 +2387,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2387
2387
  declare var DOMMatrix: {
2388
2388
  prototype: DOMMatrix;
2389
2389
  new(init?: string | number[]): DOMMatrix;
2390
+ /**
2391
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
2392
+ *
2393
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
2394
+ */
2390
2395
  fromFloat32Array(array32: Float32Array): DOMMatrix;
2396
+ /**
2397
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
2398
+ *
2399
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
2400
+ */
2391
2401
  fromFloat64Array(array64: Float64Array): DOMMatrix;
2402
+ /**
2403
+ * 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.
2404
+ *
2405
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
2406
+ */
2392
2407
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2393
2408
  };
2394
2409
 
@@ -2557,8 +2572,23 @@ interface DOMMatrixReadOnly {
2557
2572
  declare var DOMMatrixReadOnly: {
2558
2573
  prototype: DOMMatrixReadOnly;
2559
2574
  new(init?: string | number[]): DOMMatrixReadOnly;
2575
+ /**
2576
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
2577
+ *
2578
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
2579
+ */
2560
2580
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
2581
+ /**
2582
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
2583
+ *
2584
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
2585
+ */
2561
2586
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
2587
+ /**
2588
+ * 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.
2589
+ *
2590
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
2591
+ */
2562
2592
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2563
2593
  };
2564
2594
 
@@ -2707,7 +2737,17 @@ interface DOMQuad {
2707
2737
  declare var DOMQuad: {
2708
2738
  prototype: DOMQuad;
2709
2739
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2740
+ /**
2741
+ * 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.
2742
+ *
2743
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
2744
+ */
2710
2745
  fromQuad(other?: DOMQuadInit): DOMQuad;
2746
+ /**
2747
+ * 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.
2748
+ *
2749
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
2750
+ */
2711
2751
  fromRect(other?: DOMRectInit): DOMQuad;
2712
2752
  };
2713
2753
 
package/ts5.9/index.d.ts CHANGED
@@ -2387,8 +2387,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2387
2387
  declare var DOMMatrix: {
2388
2388
  prototype: DOMMatrix;
2389
2389
  new(init?: string | number[]): DOMMatrix;
2390
+ /**
2391
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
2392
+ *
2393
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
2394
+ */
2390
2395
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
2396
+ /**
2397
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
2398
+ *
2399
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
2400
+ */
2391
2401
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
2402
+ /**
2403
+ * 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.
2404
+ *
2405
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
2406
+ */
2392
2407
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2393
2408
  };
2394
2409
 
@@ -2557,8 +2572,23 @@ interface DOMMatrixReadOnly {
2557
2572
  declare var DOMMatrixReadOnly: {
2558
2573
  prototype: DOMMatrixReadOnly;
2559
2574
  new(init?: string | number[]): DOMMatrixReadOnly;
2575
+ /**
2576
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
2577
+ *
2578
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
2579
+ */
2560
2580
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
2581
+ /**
2582
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
2583
+ *
2584
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
2585
+ */
2561
2586
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
2587
+ /**
2588
+ * 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.
2589
+ *
2590
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
2591
+ */
2562
2592
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2563
2593
  };
2564
2594
 
@@ -2707,7 +2737,17 @@ interface DOMQuad {
2707
2737
  declare var DOMQuad: {
2708
2738
  prototype: DOMQuad;
2709
2739
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2740
+ /**
2741
+ * 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.
2742
+ *
2743
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
2744
+ */
2710
2745
  fromQuad(other?: DOMQuadInit): DOMQuad;
2746
+ /**
2747
+ * 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.
2748
+ *
2749
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
2750
+ */
2711
2751
  fromRect(other?: DOMRectInit): DOMQuad;
2712
2752
  };
2713
2753