@@ -6636,7 +6636,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
66366636 m44: number;
66376637 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
66386638 invertSelf(): DOMMatrix;
6639+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
66396640 multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6641+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
66406642 preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
66416643 rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
66426644 rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -6722,6 +6724,7 @@ interface DOMMatrixReadOnly {
67226724 flipY(): DOMMatrix;
67236725 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
67246726 inverse(): DOMMatrix;
6727+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
67256728 multiply(other?: DOMMatrixInit): DOMMatrix;
67266729 rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
67276730 rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
@@ -20247,12 +20250,19 @@ declare var SVGClipPathElement: {
2024720250 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
2024820251 */
2024920252interface SVGComponentTransferFunctionElement extends SVGElement {
20253+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/amplitude) */
2025020254 readonly amplitude: SVGAnimatedNumber;
20255+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/exponent) */
2025120256 readonly exponent: SVGAnimatedNumber;
20257+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/intercept) */
2025220258 readonly intercept: SVGAnimatedNumber;
20259+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/offset) */
2025320260 readonly offset: SVGAnimatedNumber;
20261+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/slope) */
2025420262 readonly slope: SVGAnimatedNumber;
20263+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/tableValues) */
2025520264 readonly tableValues: SVGAnimatedNumberList;
20265+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/type) */
2025620266 readonly type: SVGAnimatedEnumeration;
2025720267 readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;
2025820268 readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;
@@ -21617,11 +21627,17 @@ declare var SVGRadialGradientElement: {
2161721627 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement)
2161821628 */
2161921629interface SVGRectElement extends SVGGeometryElement {
21630+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/height) */
2162021631 readonly height: SVGAnimatedLength;
21632+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/rx) */
2162121633 readonly rx: SVGAnimatedLength;
21634+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/ry) */
2162221635 readonly ry: SVGAnimatedLength;
21636+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/width) */
2162321637 readonly width: SVGAnimatedLength;
21638+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/x) */
2162421639 readonly x: SVGAnimatedLength;
21640+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/y) */
2162521641 readonly y: SVGAnimatedLength;
2162621642 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2162721643 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments