@types/webworker 0.0.36 → 0.0.38

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.38 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fwebworker%400.0.38.
package/index.d.ts CHANGED
@@ -3077,8 +3077,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
3077
3077
  declare var DOMMatrix: {
3078
3078
  prototype: DOMMatrix;
3079
3079
  new(init?: string | number[]): DOMMatrix;
3080
+ /**
3081
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
3082
+ *
3083
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
3084
+ */
3080
3085
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
3086
+ /**
3087
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
3088
+ *
3089
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
3090
+ */
3081
3091
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
3092
+ /**
3093
+ * 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.
3094
+ *
3095
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
3096
+ */
3082
3097
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
3083
3098
  };
3084
3099
 
@@ -3247,8 +3262,23 @@ interface DOMMatrixReadOnly {
3247
3262
  declare var DOMMatrixReadOnly: {
3248
3263
  prototype: DOMMatrixReadOnly;
3249
3264
  new(init?: string | number[]): DOMMatrixReadOnly;
3265
+ /**
3266
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
3267
+ *
3268
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
3269
+ */
3250
3270
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
3271
+ /**
3272
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
3273
+ *
3274
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
3275
+ */
3251
3276
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
3277
+ /**
3278
+ * 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.
3279
+ *
3280
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
3281
+ */
3252
3282
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
3253
3283
  };
3254
3284
 
@@ -3397,7 +3427,17 @@ interface DOMQuad {
3397
3427
  declare var DOMQuad: {
3398
3428
  prototype: DOMQuad;
3399
3429
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3430
+ /**
3431
+ * 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.
3432
+ *
3433
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
3434
+ */
3400
3435
  fromQuad(other?: DOMQuadInit): DOMQuad;
3436
+ /**
3437
+ * 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.
3438
+ *
3439
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
3440
+ */
3401
3441
  fromRect(other?: DOMRectInit): DOMQuad;
3402
3442
  };
3403
3443
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/webworker",
3
- "version": "0.0.36",
3
+ "version": "0.0.38",
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,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
3074
3074
  declare var DOMMatrix: {
3075
3075
  prototype: DOMMatrix;
3076
3076
  new(init?: string | number[]): DOMMatrix;
3077
+ /**
3078
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
3079
+ *
3080
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
3081
+ */
3077
3082
  fromFloat32Array(array32: Float32Array): DOMMatrix;
3083
+ /**
3084
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
3085
+ *
3086
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
3087
+ */
3078
3088
  fromFloat64Array(array64: Float64Array): DOMMatrix;
3089
+ /**
3090
+ * 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.
3091
+ *
3092
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
3093
+ */
3079
3094
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
3080
3095
  };
3081
3096
 
@@ -3244,8 +3259,23 @@ interface DOMMatrixReadOnly {
3244
3259
  declare var DOMMatrixReadOnly: {
3245
3260
  prototype: DOMMatrixReadOnly;
3246
3261
  new(init?: string | number[]): DOMMatrixReadOnly;
3262
+ /**
3263
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
3264
+ *
3265
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
3266
+ */
3247
3267
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
3268
+ /**
3269
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
3270
+ *
3271
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
3272
+ */
3248
3273
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
3274
+ /**
3275
+ * 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.
3276
+ *
3277
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
3278
+ */
3249
3279
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
3250
3280
  };
3251
3281
 
@@ -3394,7 +3424,17 @@ interface DOMQuad {
3394
3424
  declare var DOMQuad: {
3395
3425
  prototype: DOMQuad;
3396
3426
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3427
+ /**
3428
+ * 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.
3429
+ *
3430
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
3431
+ */
3397
3432
  fromQuad(other?: DOMQuadInit): DOMQuad;
3433
+ /**
3434
+ * 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.
3435
+ *
3436
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
3437
+ */
3398
3438
  fromRect(other?: DOMRectInit): DOMQuad;
3399
3439
  };
3400
3440
 
package/ts5.6/index.d.ts CHANGED
@@ -3074,8 +3074,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
3074
3074
  declare var DOMMatrix: {
3075
3075
  prototype: DOMMatrix;
3076
3076
  new(init?: string | number[]): DOMMatrix;
3077
+ /**
3078
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
3079
+ *
3080
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
3081
+ */
3077
3082
  fromFloat32Array(array32: Float32Array): DOMMatrix;
3083
+ /**
3084
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
3085
+ *
3086
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
3087
+ */
3078
3088
  fromFloat64Array(array64: Float64Array): DOMMatrix;
3089
+ /**
3090
+ * 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.
3091
+ *
3092
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
3093
+ */
3079
3094
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
3080
3095
  };
3081
3096
 
@@ -3244,8 +3259,23 @@ interface DOMMatrixReadOnly {
3244
3259
  declare var DOMMatrixReadOnly: {
3245
3260
  prototype: DOMMatrixReadOnly;
3246
3261
  new(init?: string | number[]): DOMMatrixReadOnly;
3262
+ /**
3263
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
3264
+ *
3265
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
3266
+ */
3247
3267
  fromFloat32Array(array32: Float32Array): DOMMatrixReadOnly;
3268
+ /**
3269
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
3270
+ *
3271
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
3272
+ */
3248
3273
  fromFloat64Array(array64: Float64Array): DOMMatrixReadOnly;
3274
+ /**
3275
+ * 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.
3276
+ *
3277
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
3278
+ */
3249
3279
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
3250
3280
  };
3251
3281
 
@@ -3394,7 +3424,17 @@ interface DOMQuad {
3394
3424
  declare var DOMQuad: {
3395
3425
  prototype: DOMQuad;
3396
3426
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3427
+ /**
3428
+ * 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.
3429
+ *
3430
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
3431
+ */
3397
3432
  fromQuad(other?: DOMQuadInit): DOMQuad;
3433
+ /**
3434
+ * 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.
3435
+ *
3436
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
3437
+ */
3398
3438
  fromRect(other?: DOMRectInit): DOMQuad;
3399
3439
  };
3400
3440
 
package/ts5.9/index.d.ts CHANGED
@@ -3074,8 +3074,23 @@ interface DOMMatrix extends DOMMatrixReadOnly {
3074
3074
  declare var DOMMatrix: {
3075
3075
  prototype: DOMMatrix;
3076
3076
  new(init?: string | number[]): DOMMatrix;
3077
+ /**
3078
+ * The **`fromFloat32Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of single-precision (32-bit) floating-point values.
3079
+ *
3080
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat32Array_static)
3081
+ */
3077
3082
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrix;
3083
+ /**
3084
+ * The **`fromFloat64Array()`** static method of the DOMMatrix interface creates a new DOMMatrix object given an array of double-precision (64-bit) floating-point values.
3085
+ *
3086
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromFloat64Array_static)
3087
+ */
3078
3088
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrix;
3089
+ /**
3090
+ * 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.
3091
+ *
3092
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/fromMatrix_static)
3093
+ */
3079
3094
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
3080
3095
  };
3081
3096
 
@@ -3244,8 +3259,23 @@ interface DOMMatrixReadOnly {
3244
3259
  declare var DOMMatrixReadOnly: {
3245
3260
  prototype: DOMMatrixReadOnly;
3246
3261
  new(init?: string | number[]): DOMMatrixReadOnly;
3262
+ /**
3263
+ * The **`fromFloat32Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of single-precision (32-bit) floating-point values.
3264
+ *
3265
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat32Array_static)
3266
+ */
3247
3267
  fromFloat32Array(array32: Float32Array<ArrayBuffer>): DOMMatrixReadOnly;
3268
+ /**
3269
+ * The **`fromFloat64Array()`** static method of the DOMMatrixReadOnly interface creates a new DOMMatrixReadOnly object given an array of double-precision (64-bit) floating-point values.
3270
+ *
3271
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromFloat64Array_static)
3272
+ */
3248
3273
  fromFloat64Array(array64: Float64Array<ArrayBuffer>): DOMMatrixReadOnly;
3274
+ /**
3275
+ * 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.
3276
+ *
3277
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/fromMatrix_static)
3278
+ */
3249
3279
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
3250
3280
  };
3251
3281
 
@@ -3394,7 +3424,17 @@ interface DOMQuad {
3394
3424
  declare var DOMQuad: {
3395
3425
  prototype: DOMQuad;
3396
3426
  new(p1?: DOMPointInit, p2?: DOMPointInit, p3?: DOMPointInit, p4?: DOMPointInit): DOMQuad;
3427
+ /**
3428
+ * 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.
3429
+ *
3430
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromQuad_static)
3431
+ */
3397
3432
  fromQuad(other?: DOMQuadInit): DOMQuad;
3433
+ /**
3434
+ * 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.
3435
+ *
3436
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/fromRect_static)
3437
+ */
3398
3438
  fromRect(other?: DOMRectInit): DOMQuad;
3399
3439
  };
3400
3440