@types/sharedworker 0.0.190 → 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.190 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.190.
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,11 +2390,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2390
2390
  declare var DOMMatrix: {
2391
2391
  prototype: DOMMatrix;
2392
2392
  new(init?: string | number[]): DOMMatrix;
2393
- /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
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
+ */
2394
2398
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
2395
- /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
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
+ */
2396
2404
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
2397
- /** 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. */
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
+ */
2398
2410
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2399
2411
  };
2400
2412
 
@@ -2563,11 +2575,23 @@ interface DOMMatrixReadOnly {
2563
2575
  declare var DOMMatrixReadOnly: {
2564
2576
  prototype: DOMMatrixReadOnly;
2565
2577
  new(init?: string | number[]): DOMMatrixReadOnly;
2566
- /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
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
+ */
2567
2583
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
2568
- /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
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
+ */
2569
2589
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
2570
- /** 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. */
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
+ */
2571
2595
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2572
2596
  };
2573
2597
 
@@ -2716,9 +2740,17 @@ interface DOMQuad {
2716
2740
  declare var DOMQuad: {
2717
2741
  prototype: DOMQuad;
2718
2742
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2719
- /** 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. */
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
+ */
2720
2748
  fromQuad(other?: DOMQuadInit): DOMQuad;
2721
- /** 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. */
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
+ */
2722
2754
  fromRect(other?: DOMRectInit): DOMQuad;
2723
2755
  };
2724
2756
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/sharedworker",
3
- "version": "0.0.190",
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,11 +2387,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2387
2387
  declare var DOMMatrix: {
2388
2388
  prototype: DOMMatrix;
2389
2389
  new(init?: string | number[]): DOMMatrix;
2390
- /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
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
+ */
2391
2395
  fromFloat32Array(array32: Float32Array): DOMMatrix;
2392
- /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
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
+ */
2393
2401
  fromFloat64Array(array64: Float64Array): DOMMatrix;
2394
- /** 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. */
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
+ */
2395
2407
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2396
2408
  };
2397
2409
 
@@ -2560,11 +2572,23 @@ interface DOMMatrixReadOnly {
2560
2572
  declare var DOMMatrixReadOnly: {
2561
2573
  prototype: DOMMatrixReadOnly;
2562
2574
  new(init?: string | number[]): DOMMatrixReadOnly;
2563
- /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
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
+ */
2564
2580
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
2565
- /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
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
+ */
2566
2586
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
2567
- /** 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. */
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
+ */
2568
2592
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2569
2593
  };
2570
2594
 
@@ -2713,9 +2737,17 @@ interface DOMQuad {
2713
2737
  declare var DOMQuad: {
2714
2738
  prototype: DOMQuad;
2715
2739
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2716
- /** 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. */
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
+ */
2717
2745
  fromQuad(other?: DOMQuadInit): DOMQuad;
2718
- /** 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. */
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
+ */
2719
2751
  fromRect(other?: DOMRectInit): DOMQuad;
2720
2752
  };
2721
2753
 
package/ts5.6/index.d.ts CHANGED
@@ -2387,11 +2387,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2387
2387
  declare var DOMMatrix: {
2388
2388
  prototype: DOMMatrix;
2389
2389
  new(init?: string | number[]): DOMMatrix;
2390
- /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
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
+ */
2391
2395
  fromFloat32Array(array32: Float32Array): DOMMatrix;
2392
- /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
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
+ */
2393
2401
  fromFloat64Array(array64: Float64Array): DOMMatrix;
2394
- /** 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. */
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
+ */
2395
2407
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2396
2408
  };
2397
2409
 
@@ -2560,11 +2572,23 @@ interface DOMMatrixReadOnly {
2560
2572
  declare var DOMMatrixReadOnly: {
2561
2573
  prototype: DOMMatrixReadOnly;
2562
2574
  new(init?: string | number[]): DOMMatrixReadOnly;
2563
- /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
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
+ */
2564
2580
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
2565
- /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
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
+ */
2566
2586
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
2567
- /** 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. */
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
+ */
2568
2592
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2569
2593
  };
2570
2594
 
@@ -2713,9 +2737,17 @@ interface DOMQuad {
2713
2737
  declare var DOMQuad: {
2714
2738
  prototype: DOMQuad;
2715
2739
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2716
- /** 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. */
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
+ */
2717
2745
  fromQuad(other?: DOMQuadInit): DOMQuad;
2718
- /** 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. */
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
+ */
2719
2751
  fromRect(other?: DOMRectInit): DOMQuad;
2720
2752
  };
2721
2753
 
package/ts5.9/index.d.ts CHANGED
@@ -2387,11 +2387,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
2387
2387
  declare var DOMMatrix: {
2388
2388
  prototype: DOMMatrix;
2389
2389
  new(init?: string | number[]): DOMMatrix;
2390
- /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
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
+ */
2391
2395
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
2392
- /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
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
+ */
2393
2401
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
2394
- /** 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. */
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
+ */
2395
2407
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2396
2408
  };
2397
2409
 
@@ -2560,11 +2572,23 @@ interface DOMMatrixReadOnly {
2560
2572
  declare var DOMMatrixReadOnly: {
2561
2573
  prototype: DOMMatrixReadOnly;
2562
2574
  new(init?: string | number[]): DOMMatrixReadOnly;
2563
- /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
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
+ */
2564
2580
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
2565
- /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
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
+ */
2566
2586
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
2567
- /** 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. */
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
+ */
2568
2592
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2569
2593
  };
2570
2594
 
@@ -2713,9 +2737,17 @@ interface DOMQuad {
2713
2737
  declare var DOMQuad: {
2714
2738
  prototype: DOMQuad;
2715
2739
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
2716
- /** 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. */
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
+ */
2717
2745
  fromQuad(other?: DOMQuadInit): DOMQuad;
2718
- /** 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. */
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
+ */
2719
2751
  fromRect(other?: DOMRectInit): DOMQuad;
2720
2752
  };
2721
2753