@types/web 0.0.285 → 0.0.286

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
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
47
47
 
48
48
  ## Deploy Metadata
49
49
 
50
- You can read what changed in version 0.0.285 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.285.
50
+ You can read what changed in version 0.0.286 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.286.
package/index.d.ts CHANGED
@@ -9171,11 +9171,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
9171
9171
  declare var DOMMatrix: {
9172
9172
  prototype: DOMMatrix;
9173
9173
  new(init?: string | number[]): DOMMatrix;
9174
- /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
9174
+ /**
9175
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
9176
+ *
9177
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
9178
+ */
9175
9179
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
9176
- /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
9180
+ /**
9181
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
9182
+ *
9183
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
9184
+ */
9177
9185
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
9178
- /** 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. */
9186
+ /**
9187
+ * 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.
9188
+ *
9189
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
9190
+ */
9179
9191
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
9180
9192
  };
9181
9193
 
@@ -9351,11 +9363,23 @@ interface DOMMatrixReadOnly {
9351
9363
  declare var DOMMatrixReadOnly: {
9352
9364
  prototype: DOMMatrixReadOnly;
9353
9365
  new(init?: string | number[]): DOMMatrixReadOnly;
9354
- /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
9366
+ /**
9367
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
9368
+ *
9369
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
9370
+ */
9355
9371
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
9356
- /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
9372
+ /**
9373
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
9374
+ *
9375
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
9376
+ */
9357
9377
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
9358
- /** 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. */
9378
+ /**
9379
+ * 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.
9380
+ *
9381
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
9382
+ */
9359
9383
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
9360
9384
  };
9361
9385
 
@@ -9526,9 +9550,17 @@ interface DOMQuad {
9526
9550
  declare var DOMQuad: {
9527
9551
  prototype: DOMQuad;
9528
9552
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
9529
- /** 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. */
9553
+ /**
9554
+ * 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.
9555
+ *
9556
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
9557
+ */
9530
9558
  fromQuad(other?: DOMQuadInit): DOMQuad;
9531
- /** 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. */
9559
+ /**
9560
+ * 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.
9561
+ *
9562
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
9563
+ */
9532
9564
  fromRect(other?: DOMRectInit): DOMQuad;
9533
9565
  };
9534
9566
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.285",
3
+ "version": "0.0.286",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -9160,11 +9160,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
9160
9160
  declare var DOMMatrix: {
9161
9161
  prototype: DOMMatrix;
9162
9162
  new(init?: string | number[]): DOMMatrix;
9163
- /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
9163
+ /**
9164
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
9165
+ *
9166
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
9167
+ */
9164
9168
  fromFloat32Array(array32: Float32Array): DOMMatrix;
9165
- /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
9169
+ /**
9170
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
9171
+ *
9172
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
9173
+ */
9166
9174
  fromFloat64Array(array64: Float64Array): DOMMatrix;
9167
- /** 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. */
9175
+ /**
9176
+ * 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.
9177
+ *
9178
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
9179
+ */
9168
9180
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
9169
9181
  };
9170
9182
 
@@ -9340,11 +9352,23 @@ interface DOMMatrixReadOnly {
9340
9352
  declare var DOMMatrixReadOnly: {
9341
9353
  prototype: DOMMatrixReadOnly;
9342
9354
  new(init?: string | number[]): DOMMatrixReadOnly;
9343
- /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
9355
+ /**
9356
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
9357
+ *
9358
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
9359
+ */
9344
9360
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
9345
- /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
9361
+ /**
9362
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
9363
+ *
9364
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
9365
+ */
9346
9366
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
9347
- /** 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. */
9367
+ /**
9368
+ * 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.
9369
+ *
9370
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
9371
+ */
9348
9372
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
9349
9373
  };
9350
9374
 
@@ -9515,9 +9539,17 @@ interface DOMQuad {
9515
9539
  declare var DOMQuad: {
9516
9540
  prototype: DOMQuad;
9517
9541
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
9518
- /** 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. */
9542
+ /**
9543
+ * 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.
9544
+ *
9545
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
9546
+ */
9519
9547
  fromQuad(other?: DOMQuadInit): DOMQuad;
9520
- /** 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. */
9548
+ /**
9549
+ * 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.
9550
+ *
9551
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
9552
+ */
9521
9553
  fromRect(other?: DOMRectInit): DOMQuad;
9522
9554
  };
9523
9555
 
package/ts5.6/index.d.ts CHANGED
@@ -9168,11 +9168,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
9168
9168
  declare var DOMMatrix: {
9169
9169
  prototype: DOMMatrix;
9170
9170
  new(init?: string | number[]): DOMMatrix;
9171
- /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
9171
+ /**
9172
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
9173
+ *
9174
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
9175
+ */
9172
9176
  fromFloat32Array(array32: Float32Array): DOMMatrix;
9173
- /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
9177
+ /**
9178
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
9179
+ *
9180
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
9181
+ */
9174
9182
  fromFloat64Array(array64: Float64Array): DOMMatrix;
9175
- /** 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. */
9183
+ /**
9184
+ * 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.
9185
+ *
9186
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
9187
+ */
9176
9188
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
9177
9189
  };
9178
9190
 
@@ -9348,11 +9360,23 @@ interface DOMMatrixReadOnly {
9348
9360
  declare var DOMMatrixReadOnly: {
9349
9361
  prototype: DOMMatrixReadOnly;
9350
9362
  new(init?: string | number[]): DOMMatrixReadOnly;
9351
- /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
9363
+ /**
9364
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
9365
+ *
9366
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
9367
+ */
9352
9368
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
9353
- /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
9369
+ /**
9370
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
9371
+ *
9372
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
9373
+ */
9354
9374
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
9355
- /** 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. */
9375
+ /**
9376
+ * 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.
9377
+ *
9378
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
9379
+ */
9356
9380
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
9357
9381
  };
9358
9382
 
@@ -9523,9 +9547,17 @@ interface DOMQuad {
9523
9547
  declare var DOMQuad: {
9524
9548
  prototype: DOMQuad;
9525
9549
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
9526
- /** 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. */
9550
+ /**
9551
+ * 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.
9552
+ *
9553
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
9554
+ */
9527
9555
  fromQuad(other?: DOMQuadInit): DOMQuad;
9528
- /** 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. */
9556
+ /**
9557
+ * 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.
9558
+ *
9559
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
9560
+ */
9529
9561
  fromRect(other?: DOMRectInit): DOMQuad;
9530
9562
  };
9531
9563
 
package/ts5.9/index.d.ts CHANGED
@@ -9168,11 +9168,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
9168
9168
  declare var DOMMatrix: {
9169
9169
  prototype: DOMMatrix;
9170
9170
  new(init?: string | number[]): DOMMatrix;
9171
- /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
9171
+ /**
9172
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
9173
+ *
9174
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
9175
+ */
9172
9176
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
9173
- /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
9177
+ /**
9178
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
9179
+ *
9180
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
9181
+ */
9174
9182
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
9175
- /** 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. */
9183
+ /**
9184
+ * 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.
9185
+ *
9186
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
9187
+ */
9176
9188
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
9177
9189
  };
9178
9190
 
@@ -9348,11 +9360,23 @@ interface DOMMatrixReadOnly {
9348
9360
  declare var DOMMatrixReadOnly: {
9349
9361
  prototype: DOMMatrixReadOnly;
9350
9362
  new(init?: string | number[]): DOMMatrixReadOnly;
9351
- /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
9363
+ /**
9364
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
9365
+ *
9366
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
9367
+ */
9352
9368
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
9353
- /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
9369
+ /**
9370
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
9371
+ *
9372
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
9373
+ */
9354
9374
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
9355
- /** 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. */
9375
+ /**
9376
+ * 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.
9377
+ *
9378
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
9379
+ */
9356
9380
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
9357
9381
  };
9358
9382
 
@@ -9523,9 +9547,17 @@ interface DOMQuad {
9523
9547
  declare var DOMQuad: {
9524
9548
  prototype: DOMQuad;
9525
9549
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
9526
- /** 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. */
9550
+ /**
9551
+ * 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.
9552
+ *
9553
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
9554
+ */
9527
9555
  fromQuad(other?: DOMQuadInit): DOMQuad;
9528
- /** 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. */
9556
+ /**
9557
+ * 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.
9558
+ *
9559
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
9560
+ */
9529
9561
  fromRect(other?: DOMRectInit): DOMQuad;
9530
9562
  };
9531
9563