@@ -6636,7 +6636,9 @@ interface DOMMatrix extends DOMMatrixReadOnly {
6636
6636
m44: number;
6637
6637
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
6638
6638
invertSelf(): DOMMatrix;
6639
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
6639
6640
multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6641
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
6640
6642
preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
6641
6643
rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6642
6644
rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
@@ -6722,6 +6724,7 @@ interface DOMMatrixReadOnly {
6722
6724
flipY(): DOMMatrix;
6723
6725
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
6724
6726
inverse(): DOMMatrix;
6727
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
6725
6728
multiply(other?: DOMMatrixInit): DOMMatrix;
6726
6729
rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6727
6730
rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
@@ -20247,12 +20250,19 @@ declare var SVGClipPathElement: {
20247
20250
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
20248
20251
*/
20249
20252
interface SVGComponentTransferFunctionElement extends SVGElement {
20253
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/amplitude) */
20250
20254
readonly amplitude: SVGAnimatedNumber;
20255
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/exponent) */
20251
20256
readonly exponent: SVGAnimatedNumber;
20257
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/intercept) */
20252
20258
readonly intercept: SVGAnimatedNumber;
20259
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/offset) */
20253
20260
readonly offset: SVGAnimatedNumber;
20261
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/slope) */
20254
20262
readonly slope: SVGAnimatedNumber;
20263
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/tableValues) */
20255
20264
readonly tableValues: SVGAnimatedNumberList;
20265
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/type) */
20256
20266
readonly type: SVGAnimatedEnumeration;
20257
20267
readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;
20258
20268
readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;
@@ -21617,11 +21627,17 @@ declare var SVGRadialGradientElement: {
21617
21627
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement)
21618
21628
*/
21619
21629
interface SVGRectElement extends SVGGeometryElement {
21630
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/height) */
21620
21631
readonly height: SVGAnimatedLength;
21632
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/rx) */
21621
21633
readonly rx: SVGAnimatedLength;
21634
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/ry) */
21622
21635
readonly ry: SVGAnimatedLength;
21636
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/width) */
21623
21637
readonly width: SVGAnimatedLength;
21638
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/x) */
21624
21639
readonly x: SVGAnimatedLength;
21640
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/y) */
21625
21641
readonly y: SVGAnimatedLength;
21626
21642
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21627
21643
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments