@@ -18266,8 +18266,6 @@ interface PerformanceResourceTiming extends PerformanceEntry {
18266
18266
readonly requestStart: DOMHighResTimeStamp;
18267
18267
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseEnd) */
18268
18268
readonly responseEnd: DOMHighResTimeStamp;
18269
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
18270
- readonly responseStart: DOMHighResTimeStamp;
18271
18269
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
18272
18270
readonly responseStatus: number;
18273
18271
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */
@@ -20377,9 +20375,13 @@ declare var SVGElement: {
20377
20375
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement)
20378
20376
*/
20379
20377
interface SVGEllipseElement extends SVGGeometryElement {
20378
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cx) */
20380
20379
readonly cx: SVGAnimatedLength;
20380
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/cy) */
20381
20381
readonly cy: SVGAnimatedLength;
20382
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/rx) */
20382
20383
readonly rx: SVGAnimatedLength;
20384
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGEllipseElement/ry) */
20383
20385
readonly ry: SVGAnimatedLength;
20384
20386
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGEllipseElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20385
20387
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20970,6 +20972,7 @@ declare var SVGFESpotLightElement: {
20970
20972
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement)
20971
20973
*/
20972
20974
interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20975
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFETileElement/in1) */
20973
20976
readonly in1: SVGAnimatedString;
20974
20977
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFETileElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20975
20978
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
0 commit comments