Skip to content

Commit 21aee20

Browse files
🤖 Update core dependencies (microsoft#1870)
Co-authored-by: saschanaz <[email protected]>
1 parent 1547611 commit 21aee20

9 files changed

+81
-3
lines changed

Diff for: baselines/dom.generated.d.ts

+27
Original file line numberDiff line numberDiff line change
@@ -6729,10 +6729,13 @@ interface DOMMatrixReadOnly {
67296729
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
67306730
skewX(sx?: number): DOMMatrix;
67316731
skewY(sy?: number): DOMMatrix;
6732+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
67326733
toFloat32Array(): Float32Array;
6734+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
67336735
toFloat64Array(): Float64Array;
67346736
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
67356737
toJSON(): any;
6738+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
67366739
transformPoint(point?: DOMPointInit): DOMPoint;
67376740
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
67386741
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -6804,6 +6807,7 @@ interface DOMPointReadOnly {
68046807
readonly y: number;
68056808
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
68066809
readonly z: number;
6810+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
68076811
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
68086812
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
68096813
toJSON(): any;
@@ -20292,7 +20296,9 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
2029220296
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
2029320297
/** @deprecated */
2029420298
readonly className: any;
20299+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/ownerSVGElement) */
2029520300
readonly ownerSVGElement: SVGSVGElement | null;
20301+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/viewportElement) */
2029620302
readonly viewportElement: SVGElement | null;
2029720303
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2029820304
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21199,9 +21205,13 @@ declare var SVGLineElement: {
2119921205
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement)
2120021206
*/
2120121207
interface SVGLinearGradientElement extends SVGGradientElement {
21208+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x1) */
2120221209
readonly x1: SVGAnimatedLength;
21210+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x2) */
2120321211
readonly x2: SVGAnimatedLength;
21212+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y1) */
2120421213
readonly y1: SVGAnimatedLength;
21214+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y2) */
2120521215
readonly y2: SVGAnimatedLength;
2120621216
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2120721217
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21377,8 +21387,11 @@ declare var SVGPathElement: {
2137721387
*/
2137821388
interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {
2137921389
readonly height: SVGAnimatedLength;
21390+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits) */
2138021391
readonly patternContentUnits: SVGAnimatedEnumeration;
21392+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternTransform) */
2138121393
readonly patternTransform: SVGAnimatedTransformList;
21394+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits) */
2138221395
readonly patternUnits: SVGAnimatedEnumeration;
2138321396
readonly width: SVGAnimatedLength;
2138421397
readonly x: SVGAnimatedLength;
@@ -21505,11 +21518,16 @@ declare var SVGPreserveAspectRatio: {
2150521518
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement)
2150621519
*/
2150721520
interface SVGRadialGradientElement extends SVGGradientElement {
21521+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cx) */
2150821522
readonly cx: SVGAnimatedLength;
21523+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy) */
2150921524
readonly cy: SVGAnimatedLength;
2151021525
readonly fr: SVGAnimatedLength;
21526+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx) */
2151121527
readonly fx: SVGAnimatedLength;
21528+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fy) */
2151221529
readonly fy: SVGAnimatedLength;
21530+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/r) */
2151321531
readonly r: SVGAnimatedLength;
2151421532
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2151521533
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21885,14 +21903,23 @@ declare var SVGTitleElement: {
2188521903
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform)
2188621904
*/
2188721905
interface SVGTransform {
21906+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/angle) */
2188821907
readonly angle: number;
21908+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/matrix) */
2188921909
readonly matrix: DOMMatrix;
21910+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/type) */
2189021911
readonly type: number;
21912+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setMatrix) */
2189121913
setMatrix(matrix?: DOMMatrix2DInit): void;
21914+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setRotate) */
2189221915
setRotate(angle: number, cx: number, cy: number): void;
21916+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setScale) */
2189321917
setScale(sx: number, sy: number): void;
21918+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewX) */
2189421919
setSkewX(angle: number): void;
21920+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewY) */
2189521921
setSkewY(angle: number): void;
21922+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setTranslate) */
2189621923
setTranslate(tx: number, ty: number): void;
2189721924
readonly SVG_TRANSFORM_UNKNOWN: 0;
2189821925
readonly SVG_TRANSFORM_MATRIX: 1;

Diff for: baselines/serviceworker.generated.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1950,10 +1950,13 @@ interface DOMMatrixReadOnly {
19501950
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
19511951
skewX(sx?: number): DOMMatrix;
19521952
skewY(sy?: number): DOMMatrix;
1953+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
19531954
toFloat32Array(): Float32Array;
1955+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
19541956
toFloat64Array(): Float64Array;
19551957
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
19561958
toJSON(): any;
1959+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
19571960
transformPoint(point?: DOMPointInit): DOMPoint;
19581961
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
19591962
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -1996,6 +1999,7 @@ interface DOMPointReadOnly {
19961999
readonly y: number;
19972000
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
19982001
readonly z: number;
2002+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
19992003
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
20002004
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
20012005
toJSON(): any;

Diff for: baselines/sharedworker.generated.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1877,10 +1877,13 @@ interface DOMMatrixReadOnly {
18771877
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
18781878
skewX(sx?: number): DOMMatrix;
18791879
skewY(sy?: number): DOMMatrix;
1880+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
18801881
toFloat32Array(): Float32Array;
1882+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
18811883
toFloat64Array(): Float64Array;
18821884
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
18831885
toJSON(): any;
1886+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
18841887
transformPoint(point?: DOMPointInit): DOMPoint;
18851888
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
18861889
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -1923,6 +1926,7 @@ interface DOMPointReadOnly {
19231926
readonly y: number;
19241927
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
19251928
readonly z: number;
1929+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
19261930
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
19271931
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
19281932
toJSON(): any;

Diff for: baselines/ts5.5/dom.generated.d.ts

+27
Original file line numberDiff line numberDiff line change
@@ -6722,10 +6722,13 @@ interface DOMMatrixReadOnly {
67226722
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
67236723
skewX(sx?: number): DOMMatrix;
67246724
skewY(sy?: number): DOMMatrix;
6725+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
67256726
toFloat32Array(): Float32Array;
6727+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
67266728
toFloat64Array(): Float64Array;
67276729
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
67286730
toJSON(): any;
6731+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
67296732
transformPoint(point?: DOMPointInit): DOMPoint;
67306733
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
67316734
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -6797,6 +6800,7 @@ interface DOMPointReadOnly {
67976800
readonly y: number;
67986801
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
67996802
readonly z: number;
6803+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
68006804
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
68016805
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
68026806
toJSON(): any;
@@ -20271,7 +20275,9 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
2027120275
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
2027220276
/** @deprecated */
2027320277
readonly className: any;
20278+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/ownerSVGElement) */
2027420279
readonly ownerSVGElement: SVGSVGElement | null;
20280+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/viewportElement) */
2027520281
readonly viewportElement: SVGElement | null;
2027620282
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2027720283
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21178,9 +21184,13 @@ declare var SVGLineElement: {
2117821184
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement)
2117921185
*/
2118021186
interface SVGLinearGradientElement extends SVGGradientElement {
21187+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x1) */
2118121188
readonly x1: SVGAnimatedLength;
21189+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x2) */
2118221190
readonly x2: SVGAnimatedLength;
21191+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y1) */
2118321192
readonly y1: SVGAnimatedLength;
21193+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y2) */
2118421194
readonly y2: SVGAnimatedLength;
2118521195
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2118621196
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21356,8 +21366,11 @@ declare var SVGPathElement: {
2135621366
*/
2135721367
interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {
2135821368
readonly height: SVGAnimatedLength;
21369+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits) */
2135921370
readonly patternContentUnits: SVGAnimatedEnumeration;
21371+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternTransform) */
2136021372
readonly patternTransform: SVGAnimatedTransformList;
21373+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits) */
2136121374
readonly patternUnits: SVGAnimatedEnumeration;
2136221375
readonly width: SVGAnimatedLength;
2136321376
readonly x: SVGAnimatedLength;
@@ -21484,11 +21497,16 @@ declare var SVGPreserveAspectRatio: {
2148421497
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement)
2148521498
*/
2148621499
interface SVGRadialGradientElement extends SVGGradientElement {
21500+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cx) */
2148721501
readonly cx: SVGAnimatedLength;
21502+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy) */
2148821503
readonly cy: SVGAnimatedLength;
2148921504
readonly fr: SVGAnimatedLength;
21505+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx) */
2149021506
readonly fx: SVGAnimatedLength;
21507+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fy) */
2149121508
readonly fy: SVGAnimatedLength;
21509+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/r) */
2149221510
readonly r: SVGAnimatedLength;
2149321511
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2149421512
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21864,14 +21882,23 @@ declare var SVGTitleElement: {
2186421882
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform)
2186521883
*/
2186621884
interface SVGTransform {
21885+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/angle) */
2186721886
readonly angle: number;
21887+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/matrix) */
2186821888
readonly matrix: DOMMatrix;
21889+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/type) */
2186921890
readonly type: number;
21891+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setMatrix) */
2187021892
setMatrix(matrix?: DOMMatrix2DInit): void;
21893+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setRotate) */
2187121894
setRotate(angle: number, cx: number, cy: number): void;
21895+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setScale) */
2187221896
setScale(sx: number, sy: number): void;
21897+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewX) */
2187321898
setSkewX(angle: number): void;
21899+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewY) */
2187421900
setSkewY(angle: number): void;
21901+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setTranslate) */
2187521902
setTranslate(tx: number, ty: number): void;
2187621903
readonly SVG_TRANSFORM_UNKNOWN: 0;
2187721904
readonly SVG_TRANSFORM_MATRIX: 1;

Diff for: baselines/ts5.5/serviceworker.generated.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1950,10 +1950,13 @@ interface DOMMatrixReadOnly {
19501950
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
19511951
skewX(sx?: number): DOMMatrix;
19521952
skewY(sy?: number): DOMMatrix;
1953+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
19531954
toFloat32Array(): Float32Array;
1955+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
19541956
toFloat64Array(): Float64Array;
19551957
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
19561958
toJSON(): any;
1959+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
19571960
transformPoint(point?: DOMPointInit): DOMPoint;
19581961
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
19591962
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -1996,6 +1999,7 @@ interface DOMPointReadOnly {
19961999
readonly y: number;
19972000
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
19982001
readonly z: number;
2002+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
19992003
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
20002004
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
20012005
toJSON(): any;

Diff for: baselines/ts5.5/sharedworker.generated.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -1877,10 +1877,13 @@ interface DOMMatrixReadOnly {
18771877
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
18781878
skewX(sx?: number): DOMMatrix;
18791879
skewY(sy?: number): DOMMatrix;
1880+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
18801881
toFloat32Array(): Float32Array;
1882+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
18811883
toFloat64Array(): Float64Array;
18821884
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
18831885
toJSON(): any;
1886+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
18841887
transformPoint(point?: DOMPointInit): DOMPoint;
18851888
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
18861889
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -1923,6 +1926,7 @@ interface DOMPointReadOnly {
19231926
readonly y: number;
19241927
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
19251928
readonly z: number;
1929+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
19261930
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
19271931
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
19281932
toJSON(): any;

0 commit comments

Comments
 (0)