@types/serviceworker 0.0.112 → 0.0.113
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.113 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.113.
|
package/index.d.ts
CHANGED
|
@@ -1864,7 +1864,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
1864
1864
|
m44: number;
|
|
1865
1865
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
|
|
1866
1866
|
invertSelf(): DOMMatrix;
|
|
1867
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
|
|
1867
1868
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1869
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
|
|
1868
1870
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1869
1871
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
1870
1872
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
@@ -1942,6 +1944,7 @@ interface DOMMatrixReadOnly {
|
|
|
1942
1944
|
flipY(): DOMMatrix;
|
|
1943
1945
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
1944
1946
|
inverse(): DOMMatrix;
|
|
1947
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
|
|
1945
1948
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
1946
1949
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
1947
1950
|
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
package/package.json
CHANGED
package/ts5.5/index.d.ts
CHANGED
|
@@ -1864,7 +1864,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
|
|
|
1864
1864
|
m44: number;
|
|
1865
1865
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
|
|
1866
1866
|
invertSelf(): DOMMatrix;
|
|
1867
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
|
|
1867
1868
|
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1869
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
|
|
1868
1870
|
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
|
|
1869
1871
|
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|
|
1870
1872
|
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
|
|
@@ -1942,6 +1944,7 @@ interface DOMMatrixReadOnly {
|
|
|
1942
1944
|
flipY(): DOMMatrix;
|
|
1943
1945
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
|
|
1944
1946
|
inverse(): DOMMatrix;
|
|
1947
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
|
|
1945
1948
|
multiply(other?: DOMMatrixInit): DOMMatrix;
|
|
1946
1949
|
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
|
|
1947
1950
|
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
|