@types/webworker 0.0.36 → 0.0.37

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
@@ -45,4 +45,4 @@ This project does not respect semantic versioning as almost every change could p
45
45
 
46
46
  ## Deploy Metadata
47
47
 
48
- You can read what changed in version 0.0.36 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fwebworker%400.0.36.
48
+ You can read what changed in version 0.0.37 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fwebworker%400.0.37.
package/index.d.ts CHANGED
@@ -3077,8 +3077,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
3077
3077
  declare var DOMMatrix: {
3078
3078
  prototype: DOMMatrix;
3079
3079
  new(init?: string | number[]): DOMMatrix;
3080
+ /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
3080
3081
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
3082
+ /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
3081
3083
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
3084
+ /** 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. */
3082
3085
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
3083
3086
  };
3084
3087
 
@@ -3247,8 +3250,11 @@ interface DOMMatrixReadOnly {
3247
3250
  declare var DOMMatrixReadOnly: {
3248
3251
  prototype: DOMMatrixReadOnly;
3249
3252
  new(init?: string | number[]): DOMMatrixReadOnly;
3253
+ /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
3250
3254
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
3255
+ /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
3251
3256
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
3257
+ /** 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. */
3252
3258
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
3253
3259
  };
3254
3260
 
@@ -3397,7 +3403,9 @@ interface DOMQuad {
3397
3403
  declare var DOMQuad: {
3398
3404
  prototype: DOMQuad;
3399
3405
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3406
+ /** 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. */
3400
3407
  fromQuad(other?: DOMQuadInit): DOMQuad;
3408
+ /** 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. */
3401
3409
  fromRect(other?: DOMRectInit): DOMQuad;
3402
3410
  };
3403
3411
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/webworker",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "description": "Types for the global scope of Web Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -3074,8 +3074,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
3074
3074
  declare var DOMMatrix: {
3075
3075
  prototype: DOMMatrix;
3076
3076
  new(init?: string | number[]): DOMMatrix;
3077
+ /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
3077
3078
  fromFloat32Array(array32: Float32Array): DOMMatrix;
3079
+ /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
3078
3080
  fromFloat64Array(array64: Float64Array): DOMMatrix;
3081
+ /** 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. */
3079
3082
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
3080
3083
  };
3081
3084
 
@@ -3244,8 +3247,11 @@ interface DOMMatrixReadOnly {
3244
3247
  declare var DOMMatrixReadOnly: {
3245
3248
  prototype: DOMMatrixReadOnly;
3246
3249
  new(init?: string | number[]): DOMMatrixReadOnly;
3250
+ /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
3247
3251
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
3252
+ /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
3248
3253
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
3254
+ /** 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. */
3249
3255
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
3250
3256
  };
3251
3257
 
@@ -3394,7 +3400,9 @@ interface DOMQuad {
3394
3400
  declare var DOMQuad: {
3395
3401
  prototype: DOMQuad;
3396
3402
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3403
+ /** 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. */
3397
3404
  fromQuad(other?: DOMQuadInit): DOMQuad;
3405
+ /** 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. */
3398
3406
  fromRect(other?: DOMRectInit): DOMQuad;
3399
3407
  };
3400
3408
 
package/ts5.6/index.d.ts CHANGED
@@ -3074,8 +3074,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
3074
3074
  declare var DOMMatrix: {
3075
3075
  prototype: DOMMatrix;
3076
3076
  new(init?: string | number[]): DOMMatrix;
3077
+ /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
3077
3078
  fromFloat32Array(array32: Float32Array): DOMMatrix;
3079
+ /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
3078
3080
  fromFloat64Array(array64: Float64Array): DOMMatrix;
3081
+ /** 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. */
3079
3082
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
3080
3083
  };
3081
3084
 
@@ -3244,8 +3247,11 @@ interface DOMMatrixReadOnly {
3244
3247
  declare var DOMMatrixReadOnly: {
3245
3248
  prototype: DOMMatrixReadOnly;
3246
3249
  new(init?: string | number[]): DOMMatrixReadOnly;
3250
+ /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
3247
3251
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
3252
+ /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
3248
3253
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
3254
+ /** 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. */
3249
3255
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
3250
3256
  };
3251
3257
 
@@ -3394,7 +3400,9 @@ interface DOMQuad {
3394
3400
  declare var DOMQuad: {
3395
3401
  prototype: DOMQuad;
3396
3402
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3403
+ /** 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. */
3397
3404
  fromQuad(other?: DOMQuadInit): DOMQuad;
3405
+ /** 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. */
3398
3406
  fromRect(other?: DOMRectInit): DOMQuad;
3399
3407
  };
3400
3408
 
package/ts5.9/index.d.ts CHANGED
@@ -3074,8 +3074,11 @@ interface DOMMatrix extends DOMMatrixReadOnly {
3074
3074
  declare var DOMMatrix: {
3075
3075
  prototype: DOMMatrix;
3076
3076
  new(init?: string | number[]): DOMMatrix;
3077
+ /** The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values. */
3077
3078
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
3079
+ /** The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values. */
3078
3080
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
3081
+ /** 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. */
3079
3082
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
3080
3083
  };
3081
3084
 
@@ -3244,8 +3247,11 @@ interface DOMMatrixReadOnly {
3244
3247
  declare var DOMMatrixReadOnly: {
3245
3248
  prototype: DOMMatrixReadOnly;
3246
3249
  new(init?: string | number[]): DOMMatrixReadOnly;
3250
+ /** The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values. */
3247
3251
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
3252
+ /** The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values. */
3248
3253
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
3254
+ /** 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. */
3249
3255
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
3250
3256
  };
3251
3257
 
@@ -3394,7 +3400,9 @@ interface DOMQuad {
3394
3400
  declare var DOMQuad: {
3395
3401
  prototype: DOMQuad;
3396
3402
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3403
+ /** 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. */
3397
3404
  fromQuad(other?: DOMQuadInit): DOMQuad;
3405
+ /** 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. */
3398
3406
  fromRect(other?: DOMRectInit): DOMQuad;
3399
3407
  };
3400
3408