@types/sharedworker 0.0.189 → 0.0.190

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.189 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.189.
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.
package/index.d.ts CHANGED
@@ -2390,8 +2390,11 @@ 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
  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. */
2394
2396
  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. */
2395
2398
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2396
2399
  };
2397
2400
 
@@ -2560,8 +2563,11 @@ interface DOMMatrixReadOnly {
2560
2563
  declare var DOMMatrixReadOnly: {
2561
2564
  prototype: DOMMatrixReadOnly;
2562
2565
  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. */
2563
2567
  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. */
2564
2569
  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. */
2565
2571
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2566
2572
  };
2567
2573
 
@@ -2710,7 +2716,9 @@ interface DOMQuad {
2710
2716
  declare var DOMQuad: {
2711
2717
  prototype: DOMQuad;
2712
2718
  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. */
2713
2720
  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. */
2714
2722
  fromRect(other?: DOMRectInit): DOMQuad;
2715
2723
  };
2716
2724
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/sharedworker",
3
- "version": "0.0.189",
3
+ "version": "0.0.190",
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,8 +2387,11 @@ 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
  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. */
2391
2393
  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. */
2392
2395
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2393
2396
  };
2394
2397
 
@@ -2557,8 +2560,11 @@ interface DOMMatrixReadOnly {
2557
2560
  declare var DOMMatrixReadOnly: {
2558
2561
  prototype: DOMMatrixReadOnly;
2559
2562
  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. */
2560
2564
  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. */
2561
2566
  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. */
2562
2568
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2563
2569
  };
2564
2570
 
@@ -2707,7 +2713,9 @@ interface DOMQuad {
2707
2713
  declare var DOMQuad: {
2708
2714
  prototype: DOMQuad;
2709
2715
  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. */
2710
2717
  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. */
2711
2719
  fromRect(other?: DOMRectInit): DOMQuad;
2712
2720
  };
2713
2721
 
package/ts5.6/index.d.ts CHANGED
@@ -2387,8 +2387,11 @@ 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
  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. */
2391
2393
  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. */
2392
2395
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2393
2396
  };
2394
2397
 
@@ -2557,8 +2560,11 @@ interface DOMMatrixReadOnly {
2557
2560
  declare var DOMMatrixReadOnly: {
2558
2561
  prototype: DOMMatrixReadOnly;
2559
2562
  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. */
2560
2564
  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. */
2561
2566
  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. */
2562
2568
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2563
2569
  };
2564
2570
 
@@ -2707,7 +2713,9 @@ interface DOMQuad {
2707
2713
  declare var DOMQuad: {
2708
2714
  prototype: DOMQuad;
2709
2715
  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. */
2710
2717
  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. */
2711
2719
  fromRect(other?: DOMRectInit): DOMQuad;
2712
2720
  };
2713
2721
 
package/ts5.9/index.d.ts CHANGED
@@ -2387,8 +2387,11 @@ 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
  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. */
2391
2393
  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. */
2392
2395
  fromMatrix(other?: DOMMatrixInit): DOMMatrix;
2393
2396
  };
2394
2397
 
@@ -2557,8 +2560,11 @@ interface DOMMatrixReadOnly {
2557
2560
  declare var DOMMatrixReadOnly: {
2558
2561
  prototype: DOMMatrixReadOnly;
2559
2562
  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. */
2560
2564
  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. */
2561
2566
  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. */
2562
2568
  fromMatrix(other?: DOMMatrixInit): DOMMatrixReadOnly;
2563
2569
  };
2564
2570
 
@@ -2707,7 +2713,9 @@ interface DOMQuad {
2707
2713
  declare var DOMQuad: {
2708
2714
  prototype: DOMQuad;
2709
2715
  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. */
2710
2717
  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. */
2711
2719
  fromRect(other?: DOMRectInit): DOMQuad;
2712
2720
  };
2713
2721