@@ -18266,8 +18266,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
1826618266 readonly requestStart: DOMHighResTimeStamp;
1826718267 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
1826818268 readonly responseEnd: DOMHighResTimeStamp;
18269- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
18270- readonly responseStart: DOMHighResTimeStamp;
1827118269 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
1827218270 readonly responseStatus: number;
1827318271 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */
@@ -20377,9 +20375,13 @@ declare var SVGElement: {
2037720375 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
2037820376 */
2037920377interface SVGEllipseElement extends SVGGeometryElement {
20378+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
2038020379 readonly cx: SVGAnimatedLength;
20380+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
2038120381 readonly cy: SVGAnimatedLength;
20382+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
2038220383 readonly rx: SVGAnimatedLength;
20384+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
2038320385 readonly ry: SVGAnimatedLength;
2038420386 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2038520387 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20970,6 +20972,7 @@ declare var SVGFESpotLightElement: {
2097020972 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
2097120973 */
2097220974interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20975+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
2097320976 readonly in1: SVGAnimatedString;
2097420977 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2097520978 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments