@types/sharedworker 0.0.136 → 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 +1 -1
- package/index.d.ts +12 -0
- package/package.json +1 -1
- package/ts5.5/index.d.ts +12 -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.138 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.138.
|
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;
|
|
@@ -1873,9 +1879,13 @@ interface DOMMatrixReadOnly {
|
|
|
1873
1879
|
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
|
|
1874
1880
|
skewX(sx?: number): DOMMatrix;
|
|
1875
1881
|
skewY(sy?: number): DOMMatrix;
|
|
1882
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
|
|
1876
1883
|
toFloat32Array(): Float32Array;
|
|
1884
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
|
|
1877
1885
|
toFloat64Array(): Float64Array;
|
|
1886
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
|
|
1878
1887
|
toJSON(): any;
|
|
1888
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
|
|
1879
1889
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
1880
1890
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
1881
1891
|
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
@@ -1918,6 +1928,7 @@ interface DOMPointReadOnly {
|
|
|
1918
1928
|
readonly y: number;
|
|
1919
1929
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
|
|
1920
1930
|
readonly z: number;
|
|
1931
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
|
|
1921
1932
|
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
|
|
1922
1933
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
|
|
1923
1934
|
toJSON(): any;
|
|
@@ -7090,6 +7101,7 @@ interface WebGLRenderingContextBase {
|
|
|
7090
7101
|
isShader(shader: WebGLShader | null): GLboolean;
|
|
7091
7102
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
|
|
7092
7103
|
isTexture(texture: WebGLTexture | null): GLboolean;
|
|
7104
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
|
|
7093
7105
|
lineWidth(width: GLfloat): void;
|
|
7094
7106
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
|
|
7095
7107
|
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;
|
|
@@ -1873,9 +1879,13 @@ interface DOMMatrixReadOnly {
|
|
|
1873
1879
|
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
|
|
1874
1880
|
skewX(sx?: number): DOMMatrix;
|
|
1875
1881
|
skewY(sy?: number): DOMMatrix;
|
|
1882
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
|
|
1876
1883
|
toFloat32Array(): Float32Array;
|
|
1884
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
|
|
1877
1885
|
toFloat64Array(): Float64Array;
|
|
1886
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
|
|
1878
1887
|
toJSON(): any;
|
|
1888
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
|
|
1879
1889
|
transformPoint(point?: DOMPointInit): DOMPoint;
|
|
1880
1890
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
|
|
1881
1891
|
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
|
|
@@ -1918,6 +1928,7 @@ interface DOMPointReadOnly {
|
|
|
1918
1928
|
readonly y: number;
|
|
1919
1929
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
|
|
1920
1930
|
readonly z: number;
|
|
1931
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
|
|
1921
1932
|
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
|
|
1922
1933
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
|
|
1923
1934
|
toJSON(): any;
|
|
@@ -7090,6 +7101,7 @@ interface WebGLRenderingContextBase {
|
|
|
7090
7101
|
isShader(shader: WebGLShader | null): GLboolean;
|
|
7091
7102
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
|
|
7092
7103
|
isTexture(texture: WebGLTexture | null): GLboolean;
|
|
7104
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
|
|
7093
7105
|
lineWidth(width: GLfloat): void;
|
|
7094
7106
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
|
|
7095
7107
|
linkProgram(program: WebGLProgram): void;
|