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