@types/serviceworker 0.0.107 → 0.0.109

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.107 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.107.
31
+ You can read what changed in version 0.0.109 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.109.
package/index.d.ts CHANGED
@@ -1862,16 +1862,21 @@ interface DOMMatrix extends DOMMatrixReadOnly {
1862
1862
  m43: number;
1863
1863
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
1864
1864
  m44: number;
1865
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
1865
1866
  invertSelf(): DOMMatrix;
1866
1867
  multiplySelf(other?: DOMMatrixInit): DOMMatrix;
1867
1868
  preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
1868
1869
  rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
1869
1870
  rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
1871
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
1870
1872
  rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
1871
1873
  scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
1872
1874
  scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
1875
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
1873
1876
  skewXSelf(sx?: number): DOMMatrix;
1877
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
1874
1878
  skewYSelf(sy?: number): DOMMatrix;
1879
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
1875
1880
  translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
1876
1881
  }
1877
1882
 
@@ -1934,6 +1939,7 @@ interface DOMMatrixReadOnly {
1934
1939
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
1935
1940
  flipX(): DOMMatrix;
1936
1941
  flipY(): DOMMatrix;
1942
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
1937
1943
  inverse(): DOMMatrix;
1938
1944
  multiply(other?: DOMMatrixInit): DOMMatrix;
1939
1945
  rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
@@ -1946,9 +1952,13 @@ interface DOMMatrixReadOnly {
1946
1952
  scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
1947
1953
  skewX(sx?: number): DOMMatrix;
1948
1954
  skewY(sy?: number): DOMMatrix;
1955
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
1949
1956
  toFloat32Array(): Float32Array;
1957
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
1950
1958
  toFloat64Array(): Float64Array;
1959
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
1951
1960
  toJSON(): any;
1961
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
1952
1962
  transformPoint(point?: DOMPointInit): DOMPoint;
1953
1963
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
1954
1964
  translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -1991,6 +2001,7 @@ interface DOMPointReadOnly {
1991
2001
  readonly y: number;
1992
2002
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
1993
2003
  readonly z: number;
2004
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
1994
2005
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
1995
2006
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
1996
2007
  toJSON(): any;
@@ -7279,6 +7290,7 @@ interface WebGLRenderingContextBase {
7279
7290
  isShader(shader: WebGLShader | null): GLboolean;
7280
7291
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
7281
7292
  isTexture(texture: WebGLTexture | null): GLboolean;
7293
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
7282
7294
  lineWidth(width: GLfloat): void;
7283
7295
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
7284
7296
  linkProgram(program: WebGLProgram): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/serviceworker",
3
- "version": "0.0.107",
3
+ "version": "0.0.109",
4
4
  "description": "Types for the global scope of Service Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -1862,16 +1862,21 @@ interface DOMMatrix extends DOMMatrixReadOnly {
1862
1862
  m43: number;
1863
1863
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
1864
1864
  m44: number;
1865
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
1865
1866
  invertSelf(): DOMMatrix;
1866
1867
  multiplySelf(other?: DOMMatrixInit): DOMMatrix;
1867
1868
  preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
1868
1869
  rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
1869
1870
  rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
1871
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
1870
1872
  rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
1871
1873
  scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
1872
1874
  scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
1875
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
1873
1876
  skewXSelf(sx?: number): DOMMatrix;
1877
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
1874
1878
  skewYSelf(sy?: number): DOMMatrix;
1879
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
1875
1880
  translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
1876
1881
  }
1877
1882
 
@@ -1934,6 +1939,7 @@ interface DOMMatrixReadOnly {
1934
1939
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
1935
1940
  flipX(): DOMMatrix;
1936
1941
  flipY(): DOMMatrix;
1942
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
1937
1943
  inverse(): DOMMatrix;
1938
1944
  multiply(other?: DOMMatrixInit): DOMMatrix;
1939
1945
  rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
@@ -1946,9 +1952,13 @@ interface DOMMatrixReadOnly {
1946
1952
  scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
1947
1953
  skewX(sx?: number): DOMMatrix;
1948
1954
  skewY(sy?: number): DOMMatrix;
1955
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
1949
1956
  toFloat32Array(): Float32Array;
1957
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
1950
1958
  toFloat64Array(): Float64Array;
1959
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
1951
1960
  toJSON(): any;
1961
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
1952
1962
  transformPoint(point?: DOMPointInit): DOMPoint;
1953
1963
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
1954
1964
  translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -1991,6 +2001,7 @@ interface DOMPointReadOnly {
1991
2001
  readonly y: number;
1992
2002
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
1993
2003
  readonly z: number;
2004
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
1994
2005
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
1995
2006
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
1996
2007
  toJSON(): any;
@@ -7279,6 +7290,7 @@ interface WebGLRenderingContextBase {
7279
7290
  isShader(shader: WebGLShader | null): GLboolean;
7280
7291
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
7281
7292
  isTexture(texture: WebGLTexture | null): GLboolean;
7293
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
7282
7294
  lineWidth(width: GLfloat): void;
7283
7295
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
7284
7296
  linkProgram(program: WebGLProgram): void;