@@ -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
2029220296interface 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 */
2120121207interface 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 */
2137821388interface 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 */
2150721520interface 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 */
2188721905interface 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;
0 commit comments