@types/sharedworker 0.0.137 → 0.0.138

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.137 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.137.
31
+ You can read what changed in version 0.0.138 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.138.
package/index.d.ts CHANGED
@@ -1879,10 +1879,13 @@ interface DOMMatrixReadOnly {
1879
1879
  scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
1880
1880
  skewX(sx?: number): DOMMatrix;
1881
1881
  skewY(sy?: number): DOMMatrix;
1882
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
1882
1883
  toFloat32Array(): Float32Array;
1884
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
1883
1885
  toFloat64Array(): Float64Array;
1884
1886
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
1885
1887
  toJSON(): any;
1888
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
1886
1889
  transformPoint(point?: DOMPointInit): DOMPoint;
1887
1890
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
1888
1891
  translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -1925,6 +1928,7 @@ interface DOMPointReadOnly {
1925
1928
  readonly y: number;
1926
1929
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
1927
1930
  readonly z: number;
1931
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
1928
1932
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
1929
1933
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
1930
1934
  toJSON(): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/sharedworker",
3
- "version": "0.0.137",
3
+ "version": "0.0.138",
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
@@ -1879,10 +1879,13 @@ interface DOMMatrixReadOnly {
1879
1879
  scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
1880
1880
  skewX(sx?: number): DOMMatrix;
1881
1881
  skewY(sy?: number): DOMMatrix;
1882
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
1882
1883
  toFloat32Array(): Float32Array;
1884
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
1883
1885
  toFloat64Array(): Float64Array;
1884
1886
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
1885
1887
  toJSON(): any;
1888
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
1886
1889
  transformPoint(point?: DOMPointInit): DOMPoint;
1887
1890
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
1888
1891
  translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -1925,6 +1928,7 @@ interface DOMPointReadOnly {
1925
1928
  readonly y: number;
1926
1929
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
1927
1930
  readonly z: number;
1931
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
1928
1932
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
1929
1933
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
1930
1934
  toJSON(): any;