@@ -11350,9 +11350,17 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11350
11350
autocomplete: AutoFill;
11351
11351
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/capture) */
11352
11352
capture: string;
11353
- /** Sets or retrieves the state of the check box or radio button. */
11353
+ /**
11354
+ * Sets or retrieves the state of the check box or radio button.
11355
+ *
11356
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/checked)
11357
+ */
11354
11358
checked: boolean;
11355
- /** Sets or retrieves the state of the check box or radio button. */
11359
+ /**
11360
+ * Sets or retrieves the state of the check box or radio button.
11361
+ *
11362
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultChecked)
11363
+ */
11356
11364
defaultChecked: boolean;
11357
11365
/**
11358
11366
* Sets or retrieves the initial contents of the object.
@@ -13572,10 +13580,19 @@ interface HTMLTextAreaElement extends HTMLElement {
13572
13580
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/rows)
13573
13581
*/
13574
13582
rows: number;
13583
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionDirection) */
13575
13584
selectionDirection: "forward" | "backward" | "none";
13576
- /** Gets or sets the end position or offset of a text selection. */
13585
+ /**
13586
+ * Gets or sets the end position or offset of a text selection.
13587
+ *
13588
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionEnd)
13589
+ */
13577
13590
selectionEnd: number;
13578
- /** Gets or sets the starting position or offset of a text selection. */
13591
+ /**
13592
+ * Gets or sets the starting position or offset of a text selection.
13593
+ *
13594
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/selectionStart)
13595
+ */
13579
13596
selectionStart: number;
13580
13597
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
13581
13598
readonly textLength: number;
@@ -13619,20 +13636,27 @@ interface HTMLTextAreaElement extends HTMLElement {
13619
13636
checkValidity(): boolean;
13620
13637
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
13621
13638
reportValidity(): boolean;
13622
- /** Highlights the input area of a form element. */
13639
+ /**
13640
+ * Highlights the input area of a form element.
13641
+ *
13642
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/select)
13643
+ */
13623
13644
select(): void;
13624
13645
/**
13625
13646
* Sets a custom error message that is displayed when a form is submitted.
13626
13647
* @param error Sets a custom error message that is displayed when a form is submitted.
13627
13648
*/
13628
13649
setCustomValidity(error: string): void;
13650
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setRangeText) */
13629
13651
setRangeText(replacement: string): void;
13630
13652
setRangeText(replacement: string, start: number, end: number, selectionMode?: SelectionMode): void;
13631
13653
/**
13632
13654
* Sets the start and end positions of a selection in a text field.
13633
13655
* @param start The offset into the text field for the start of the selection.
13634
13656
* @param end The offset into the text field for the end of the selection.
13635
13657
* @param direction The direction in which the selection is performed.
13658
+ *
13659
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/setSelectionRange)
13636
13660
*/
13637
13661
setSelectionRange(start: number | null, end: number | null, direction?: "forward" | "backward" | "none"): void;
13638
13662
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTextAreaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -20612,14 +20636,23 @@ declare var SVGLength: {
20612
20636
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList)
20613
20637
*/
20614
20638
interface SVGLengthList {
20639
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/length) */
20615
20640
readonly length: number;
20641
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/numberOfItems) */
20616
20642
readonly numberOfItems: number;
20643
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/appendItem) */
20617
20644
appendItem(newItem: SVGLength): SVGLength;
20645
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/clear) */
20618
20646
clear(): void;
20647
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/getItem) */
20619
20648
getItem(index: number): SVGLength;
20649
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/initialize) */
20620
20650
initialize(newItem: SVGLength): SVGLength;
20651
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/insertItemBefore) */
20621
20652
insertItemBefore(newItem: SVGLength, index: number): SVGLength;
20653
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/removeItem) */
20622
20654
removeItem(index: number): SVGLength;
20655
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLengthList/replaceItem) */
20623
20656
replaceItem(newItem: SVGLength, index: number): SVGLength;
20624
20657
[index: number]: SVGLength;
20625
20658
}
0 commit comments