@@ -10125,7 +10125,11 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
10125
10125
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/alt)
10126
10126
*/
10127
10127
alt: string;
10128
- /** Sets or retrieves the coordinates of the object. */
10128
+ /**
10129
+ * Sets or retrieves the coordinates of the object.
10130
+ *
10131
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/coords)
10132
+ */
10129
10133
coords: string;
10130
10134
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/download) */
10131
10135
download: string;
@@ -10143,7 +10147,11 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
10143
10147
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList) */
10144
10148
get relList(): DOMTokenList;
10145
10149
set relList(value: string);
10146
- /** Sets or retrieves the shape of the object. */
10150
+ /**
10151
+ * Sets or retrieves the shape of the object.
10152
+ *
10153
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/shape)
10154
+ */
10147
10155
shape: string;
10148
10156
/**
10149
10157
* Sets or retrieves the window or frame at which to target content.
@@ -12386,7 +12394,11 @@ declare var HTMLMeterElement: {
12386
12394
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement)
12387
12395
*/
12388
12396
interface HTMLModElement extends HTMLElement {
12389
- /** Sets or retrieves reference information about the object. */
12397
+ /**
12398
+ * Sets or retrieves reference information about the object.
12399
+ *
12400
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
12401
+ */
12390
12402
cite: string;
12391
12403
/** Sets or retrieves the date and time of a modification to the object. */
12392
12404
dateTime: string;
@@ -12915,7 +12927,11 @@ declare var HTMLProgressElement: {
12915
12927
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement)
12916
12928
*/
12917
12929
interface HTMLQuoteElement extends HTMLElement {
12918
- /** Sets or retrieves reference information about the object. */
12930
+ /**
12931
+ * Sets or retrieves reference information about the object.
12932
+ *
12933
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement/cite)
12934
+ */
12919
12935
cite: string;
12920
12936
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12921
12937
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21894,6 +21910,7 @@ declare var SVGTransformList: {
21894
21910
};
21895
21911
21896
21912
interface SVGURIReference {
21913
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement/href) */
21897
21914
readonly href: SVGAnimatedString;
21898
21915
}
21899
21916
0 commit comments