@types/sharedworker 0.0.136 → 0.0.137
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 +1 -1
- package/index.d.ts +8 -0
- package/package.json +1 -1
- package/ts5.5/index.d.ts +8 -0
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.
|
|
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.
|
package/index.d.ts
CHANGED
|
@@ -1789,16 +1789,21 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
1789
1789
|
m43: number;
|
|
1790
1790
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
|
|
1791
1791
|
m44: number;
|
|
1792
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
|
|
1792
1793
|
invertSelf(): DOMMatrix;
|
|
1793
1794
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1794
1795
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1795
1796
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
1796
1797
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
1798
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
|
|
1797
1799
|
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
1798
1800
|
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
1799
1801
|
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
1802
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
|
|
1800
1803
|
skewXSelf(sx?: number): DOMMatrix;
|
|
1804
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
|
|
1801
1805
|
skewYSelf(sy?: number): DOMMatrix;
|
|
1806
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
|
|
1802
1807
|
translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
1803
1808
|
}
|
|
1804
1809
|
|
|
@@ -1861,6 +1866,7 @@ interface DOMMatrixReadOnly {
|
|
|
1861
1866
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
|
|
1862
1867
|
flipX(): DOMMatrix;
|
|
1863
1868
|
flipY(): DOMMatrix;
|
|
1869
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
1864
1870
|
inverse(): DOMMatrix;
|
|
1865
1871
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
1866
1872
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
@@ -1875,6 +1881,7 @@ interface DOMMatrixReadOnly {
|
|
|
1875
1881
|
skewY(sy?: number): DOMMatrix;
|
|
1876
1882
|
toFloat32Array(): Float32Array;
|
|
1877
1883
|
toFloat64Array(): Float64Array;
|
|
1884
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
|
|
1878
1885
|
toJSON(): any;
|
|
1879
1886
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
1880
1887
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
@@ -7090,6 +7097,7 @@ interface WebGLRenderingContextBase {
|
|
|
7090
7097
|
isShader(shader: WebGLShader | null): GLboolean;
|
|
7091
7098
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
|
|
7092
7099
|
isTexture(texture: WebGLTexture | null): GLboolean;
|
|
7100
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
|
|
7093
7101
|
lineWidth(width: GLfloat): void;
|
|
7094
7102
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
|
|
7095
7103
|
linkProgram(program: WebGLProgram): void;
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -1789,16 +1789,21 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
1789
1789
|
m43: number;
|
|
1790
1790
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
|
|
1791
1791
|
m44: number;
|
|
1792
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
|
|
1792
1793
|
invertSelf(): DOMMatrix;
|
|
1793
1794
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1794
1795
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1795
1796
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
1796
1797
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
1798
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
|
|
1797
1799
|
rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
1798
1800
|
scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
1799
1801
|
scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
|
|
1802
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
|
|
1800
1803
|
skewXSelf(sx?: number): DOMMatrix;
|
|
1804
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
|
|
1801
1805
|
skewYSelf(sy?: number): DOMMatrix;
|
|
1806
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
|
|
1802
1807
|
translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
1803
1808
|
}
|
|
1804
1809
|
|
|
@@ -1861,6 +1866,7 @@ interface DOMMatrixReadOnly {
|
|
|
1861
1866
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
|
|
1862
1867
|
flipX(): DOMMatrix;
|
|
1863
1868
|
flipY(): DOMMatrix;
|
|
1869
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
1864
1870
|
inverse(): DOMMatrix;
|
|
1865
1871
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
1866
1872
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
@@ -1875,6 +1881,7 @@ interface DOMMatrixReadOnly {
|
|
|
1875
1881
|
skewY(sy?: number): DOMMatrix;
|
|
1876
1882
|
toFloat32Array(): Float32Array;
|
|
1877
1883
|
toFloat64Array(): Float64Array;
|
|
1884
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
|
|
1878
1885
|
toJSON(): any;
|
|
1879
1886
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
1880
1887
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
@@ -7090,6 +7097,7 @@ interface WebGLRenderingContextBase {
|
|
|
7090
7097
|
isShader(shader: WebGLShader | null): GLboolean;
|
|
7091
7098
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
|
|
7092
7099
|
isTexture(texture: WebGLTexture | null): GLboolean;
|
|
7100
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
|
|
7093
7101
|
lineWidth(width: GLfloat): void;
|
|
7094
7102
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
|
|
7095
7103
|
linkProgram(program: WebGLProgram): void;
|