@@ -6729,10 +6729,13 @@ interface DOMMatrixReadOnly {
6729
6729
scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
6730
6730
skewX(sx?: number): DOMMatrix;
6731
6731
skewY(sy?: number): DOMMatrix;
6732
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
6732
6733
toFloat32Array(): Float32Array;
6734
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
6733
6735
toFloat64Array(): Float64Array;
6734
6736
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
6735
6737
toJSON(): any;
6738
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
6736
6739
transformPoint(point?: DOMPointInit): DOMPoint;
6737
6740
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
6738
6741
translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -6804,6 +6807,7 @@ interface DOMPointReadOnly {
6804
6807
readonly y: number;
6805
6808
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
6806
6809
readonly z: number;
6810
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
6807
6811
matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
6808
6812
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
6809
6813
toJSON(): any;
@@ -20292,7 +20296,9 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
20292
20296
interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
20293
20297
/** @deprecated */
20294
20298
readonly className: any;
20299
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/ownerSVGElement) */
20295
20300
readonly ownerSVGElement: SVGSVGElement | null;
20301
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/viewportElement) */
20296
20302
readonly viewportElement: SVGElement | null;
20297
20303
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20298
20304
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21199,9 +21205,13 @@ declare var SVGLineElement: {
21199
21205
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement)
21200
21206
*/
21201
21207
interface SVGLinearGradientElement extends SVGGradientElement {
21208
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x1) */
21202
21209
readonly x1: SVGAnimatedLength;
21210
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x2) */
21203
21211
readonly x2: SVGAnimatedLength;
21212
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y1) */
21204
21213
readonly y1: SVGAnimatedLength;
21214
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y2) */
21205
21215
readonly y2: SVGAnimatedLength;
21206
21216
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21207
21217
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21377,8 +21387,11 @@ declare var SVGPathElement: {
21377
21387
*/
21378
21388
interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {
21379
21389
readonly height: SVGAnimatedLength;
21390
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits) */
21380
21391
readonly patternContentUnits: SVGAnimatedEnumeration;
21392
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternTransform) */
21381
21393
readonly patternTransform: SVGAnimatedTransformList;
21394
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits) */
21382
21395
readonly patternUnits: SVGAnimatedEnumeration;
21383
21396
readonly width: SVGAnimatedLength;
21384
21397
readonly x: SVGAnimatedLength;
@@ -21505,11 +21518,16 @@ declare var SVGPreserveAspectRatio: {
21505
21518
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement)
21506
21519
*/
21507
21520
interface SVGRadialGradientElement extends SVGGradientElement {
21521
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cx) */
21508
21522
readonly cx: SVGAnimatedLength;
21523
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy) */
21509
21524
readonly cy: SVGAnimatedLength;
21510
21525
readonly fr: SVGAnimatedLength;
21526
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx) */
21511
21527
readonly fx: SVGAnimatedLength;
21528
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fy) */
21512
21529
readonly fy: SVGAnimatedLength;
21530
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/r) */
21513
21531
readonly r: SVGAnimatedLength;
21514
21532
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21515
21533
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21885,14 +21903,23 @@ declare var SVGTitleElement: {
21885
21903
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform)
21886
21904
*/
21887
21905
interface SVGTransform {
21906
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/angle) */
21888
21907
readonly angle: number;
21908
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/matrix) */
21889
21909
readonly matrix: DOMMatrix;
21910
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/type) */
21890
21911
readonly type: number;
21912
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setMatrix) */
21891
21913
setMatrix(matrix?: DOMMatrix2DInit): void;
21914
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setRotate) */
21892
21915
setRotate(angle: number, cx: number, cy: number): void;
21916
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setScale) */
21893
21917
setScale(sx: number, sy: number): void;
21918
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewX) */
21894
21919
setSkewX(angle: number): void;
21920
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewY) */
21895
21921
setSkewY(angle: number): void;
21922
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setTranslate) */
21896
21923
setTranslate(tx: number, ty: number): void;
21897
21924
readonly SVG_TRANSFORM_UNKNOWN: 0;
21898
21925
readonly SVG_TRANSFORM_MATRIX: 1;
0 commit comments