@types/sharedworker 0.0.141 → 0.0.142
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 +3 -0
- package/package.json +1 -1
- package/ts5.5/index.d.ts +3 -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.142 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.142.
|
package/index.d.ts
CHANGED
|
@@ -1791,7 +1791,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
1791
1791
|
m44: number;
|
|
1792
1792
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
|
|
1793
1793
|
invertSelf(): DOMMatrix;
|
|
1794
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
|
|
1794
1795
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1796
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
|
|
1795
1797
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1796
1798
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
1797
1799
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
@@ -1869,6 +1871,7 @@ interface DOMMatrixReadOnly {
|
|
|
1869
1871
|
flipY(): DOMMatrix;
|
|
1870
1872
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
1871
1873
|
inverse(): DOMMatrix;
|
|
1874
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
|
|
1872
1875
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
1873
1876
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
1874
1877
|
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -1791,7 +1791,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
1791
1791
|
m44: number;
|
|
1792
1792
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
|
|
1793
1793
|
invertSelf(): DOMMatrix;
|
|
1794
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
|
|
1794
1795
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1796
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
|
|
1795
1797
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1796
1798
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
1797
1799
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
@@ -1869,6 +1871,7 @@ interface DOMMatrixReadOnly {
|
|
|
1869
1871
|
flipY(): DOMMatrix;
|
|
1870
1872
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
1871
1873
|
inverse(): DOMMatrix;
|
|
1874
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
|
|
1872
1875
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
1873
1876
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
1874
1877
|
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|