@types/web 0.0.284 → 0.0.285
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 +9 -1
- package/package.json +1 -1
- package/ts5.5/index.d.ts +9 -1
- package/ts5.6/index.d.ts +9 -1
- package/ts5.9/index.d.ts +9 -1
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.
|
|
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.
|
package/index.d.ts
CHANGED
|
@@ -9171,8 +9171,11 @@ 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
|
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. */
|
|
9175
9177
|
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. */
|
|
9176
9179
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
9177
9180
|
};
|
|
9178
9181
|
|
|
@@ -9348,8 +9351,11 @@ interface DOMMatrixReadOnly {
|
|
|
9348
9351
|
declare var DOMMatrixReadOnly: {
|
|
9349
9352
|
prototype: DOMMatrixReadOnly;
|
|
9350
9353
|
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. */
|
|
9351
9355
|
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. */
|
|
9352
9357
|
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. */
|
|
9353
9359
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
9354
9360
|
};
|
|
9355
9361
|
|
|
@@ -9520,7 +9526,9 @@ interface DOMQuad {
|
|
|
9520
9526
|
declare var DOMQuad: {
|
|
9521
9527
|
prototype: DOMQuad;
|
|
9522
9528
|
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. */
|
|
9523
9530
|
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. */
|
|
9524
9532
|
fromRect(other?: DOMRectInit): DOMQuad;
|
|
9525
9533
|
};
|
|
9526
9534
|
|
|
@@ -32809,7 +32817,7 @@ declare var TimeRanges: {
|
|
|
32809
32817
|
};
|
|
32810
32818
|
|
|
32811
32819
|
/**
|
|
32812
|
-
* The **`ToggleEvent`** interface represents an event
|
|
32820
|
+
* The **`ToggleEvent`** interface represents an event that fires when a popover element is toggled between being shown and hidden.
|
|
32813
32821
|
*
|
|
32814
32822
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent)
|
|
32815
32823
|
*/
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -9160,8 +9160,11 @@ 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
|
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. */
|
|
9164
9166
|
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. */
|
|
9165
9168
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
9166
9169
|
};
|
|
9167
9170
|
|
|
@@ -9337,8 +9340,11 @@ interface DOMMatrixReadOnly {
|
|
|
9337
9340
|
declare var DOMMatrixReadOnly: {
|
|
9338
9341
|
prototype: DOMMatrixReadOnly;
|
|
9339
9342
|
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. */
|
|
9340
9344
|
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. */
|
|
9341
9346
|
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. */
|
|
9342
9348
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
9343
9349
|
};
|
|
9344
9350
|
|
|
@@ -9509,7 +9515,9 @@ interface DOMQuad {
|
|
|
9509
9515
|
declare var DOMQuad: {
|
|
9510
9516
|
prototype: DOMQuad;
|
|
9511
9517
|
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. */
|
|
9512
9519
|
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. */
|
|
9513
9521
|
fromRect(other?: DOMRectInit): DOMQuad;
|
|
9514
9522
|
};
|
|
9515
9523
|
|
|
@@ -32783,7 +32791,7 @@ declare var TimeRanges: {
|
|
|
32783
32791
|
};
|
|
32784
32792
|
|
|
32785
32793
|
/**
|
|
32786
|
-
* The **`ToggleEvent`** interface represents an event
|
|
32794
|
+
* The **`ToggleEvent`** interface represents an event that fires when a popover element is toggled between being shown and hidden.
|
|
32787
32795
|
*
|
|
32788
32796
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent)
|
|
32789
32797
|
*/
|
package/ts5.6/index.d.ts
CHANGED
|
@@ -9168,8 +9168,11 @@ 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
|
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. */
|
|
9172
9174
|
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. */
|
|
9173
9176
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
9174
9177
|
};
|
|
9175
9178
|
|
|
@@ -9345,8 +9348,11 @@ interface DOMMatrixReadOnly {
|
|
|
9345
9348
|
declare var DOMMatrixReadOnly: {
|
|
9346
9349
|
prototype: DOMMatrixReadOnly;
|
|
9347
9350
|
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. */
|
|
9348
9352
|
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. */
|
|
9349
9354
|
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. */
|
|
9350
9356
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
9351
9357
|
};
|
|
9352
9358
|
|
|
@@ -9517,7 +9523,9 @@ interface DOMQuad {
|
|
|
9517
9523
|
declare var DOMQuad: {
|
|
9518
9524
|
prototype: DOMQuad;
|
|
9519
9525
|
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. */
|
|
9520
9527
|
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. */
|
|
9521
9529
|
fromRect(other?: DOMRectInit): DOMQuad;
|
|
9522
9530
|
};
|
|
9523
9531
|
|
|
@@ -32806,7 +32814,7 @@ declare var TimeRanges: {
|
|
|
32806
32814
|
};
|
|
32807
32815
|
|
|
32808
32816
|
/**
|
|
32809
|
-
* The **`ToggleEvent`** interface represents an event
|
|
32817
|
+
* The **`ToggleEvent`** interface represents an event that fires when a popover element is toggled between being shown and hidden.
|
|
32810
32818
|
*
|
|
32811
32819
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent)
|
|
32812
32820
|
*/
|
package/ts5.9/index.d.ts
CHANGED
|
@@ -9168,8 +9168,11 @@ 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
|
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. */
|
|
9172
9174
|
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. */
|
|
9173
9176
|
fromMatrix(other?: DOMMatrixInit): DOMMatrix;
|
|
9174
9177
|
};
|
|
9175
9178
|
|
|
@@ -9345,8 +9348,11 @@ interface DOMMatrixReadOnly {
|
|
|
9345
9348
|
declare var DOMMatrixReadOnly: {
|
|
9346
9349
|
prototype: DOMMatrixReadOnly;
|
|
9347
9350
|
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. */
|
|
9348
9352
|
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. */
|
|
9349
9354
|
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. */
|
|
9350
9356
|
fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
|
|
9351
9357
|
};
|
|
9352
9358
|
|
|
@@ -9517,7 +9523,9 @@ interface DOMQuad {
|
|
|
9517
9523
|
declare var DOMQuad: {
|
|
9518
9524
|
prototype: DOMQuad;
|
|
9519
9525
|
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. */
|
|
9520
9527
|
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. */
|
|
9521
9529
|
fromRect(other?: DOMRectInit): DOMQuad;
|
|
9522
9530
|
};
|
|
9523
9531
|
|
|
@@ -32806,7 +32814,7 @@ declare var TimeRanges: {
|
|
|
32806
32814
|
};
|
|
32807
32815
|
|
|
32808
32816
|
/**
|
|
32809
|
-
* The **`ToggleEvent`** interface represents an event
|
|
32817
|
+
* The **`ToggleEvent`** interface represents an event that fires when a popover element is toggled between being shown and hidden.
|
|
32810
32818
|
*
|
|
32811
32819
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent)
|
|
32812
32820
|
*/
|