@types/serviceworker 0.0.107 → 0.0.108

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.108 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.108.
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;
@@ -1948,6 +1954,7 @@ interface DOMMatrixReadOnly {
1948
1954
  skewY(sy?: number): DOMMatrix;
1949
1955
  toFloat32Array(): Float32Array;
1950
1956
  toFloat64Array(): Float64Array;
1957
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
1951
1958
  toJSON(): any;
1952
1959
  transformPoint(point?: DOMPointInit): DOMPoint;
1953
1960
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
@@ -7279,6 +7286,7 @@ interface WebGLRenderingContextBase {
7279
7286
  isShader(shader: WebGLShader | null): GLboolean;
7280
7287
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
7281
7288
  isTexture(texture: WebGLTexture | null): GLboolean;
7289
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
7282
7290
  lineWidth(width: GLfloat): void;
7283
7291
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
7284
7292
  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.108",
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;
@@ -1948,6 +1954,7 @@ interface DOMMatrixReadOnly {
1948
1954
  skewY(sy?: number): DOMMatrix;
1949
1955
  toFloat32Array(): Float32Array;
1950
1956
  toFloat64Array(): Float64Array;
1957
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
1951
1958
  toJSON(): any;
1952
1959
  transformPoint(point?: DOMPointInit): DOMPoint;
1953
1960
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
@@ -7279,6 +7286,7 @@ interface WebGLRenderingContextBase {
7279
7286
  isShader(shader: WebGLShader | null): GLboolean;
7280
7287
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
7281
7288
  isTexture(texture: WebGLTexture | null): GLboolean;
7289
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
7282
7290
  lineWidth(width: GLfloat): void;
7283
7291
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
7284
7292
  linkProgram(program: WebGLProgram): void;