Skip to content

Commit bc2627c

Browse files
Update LKG
1 parent 9819350 commit bc2627c

19 files changed

+4160
-3916
lines changed

lib/de/diagnosticMessages.generated.json

Lines changed: 17 additions & 5 deletions
Large diffs are not rendered by default.

lib/it/diagnosticMessages.generated.json

Lines changed: 17 additions & 5 deletions
Large diffs are not rendered by default.

lib/ko/diagnosticMessages.generated.json

Lines changed: 17 additions & 5 deletions
Large diffs are not rendered by default.

lib/lib.dom.d.ts

Lines changed: 669 additions & 1896 deletions
Large diffs are not rendered by default.

lib/lib.dom.iterable.d.ts

Lines changed: 16 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,11 @@ interface FontFaceSet extends Set<FontFace> {
7878

7979
interface FormData {
8080
[Symbol.iterator](): IterableIterator<[string, FormDataEntryValue]>;
81-
/**
82-
* Returns an array of key, value pairs for every entry in the list.
83-
*/
81+
/** Returns an array of key, value pairs for every entry in the list. */
8482
entries(): IterableIterator<[string, FormDataEntryValue]>;
85-
/**
86-
* Returns a list of keys in the list.
87-
*/
83+
/** Returns a list of keys in the list. */
8884
keys(): IterableIterator<string>;
89-
/**
90-
* Returns a list of values in the list.
91-
*/
85+
/** Returns a list of values in the list. */
9286
values(): IterableIterator<FormDataEntryValue>;
9387
}
9488

@@ -114,24 +108,16 @@ interface HTMLSelectElement {
114108

115109
interface Headers {
116110
[Symbol.iterator](): IterableIterator<[string, string]>;
117-
/**
118-
* Returns an iterator allowing to go through all key/value pairs contained in this object.
119-
*/
111+
/** Returns an iterator allowing to go through all key/value pairs contained in this object. */
120112
entries(): IterableIterator<[string, string]>;
121-
/**
122-
* Returns an iterator allowing to go through all keys of the key/value pairs contained in this object.
123-
*/
113+
/** Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. */
124114
keys(): IterableIterator<string>;
125-
/**
126-
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
127-
*/
115+
/** Returns an iterator allowing to go through all values of the key/value pairs contained in this object. */
128116
values(): IterableIterator<string>;
129117
}
130118

131119
interface IDBDatabase {
132-
/**
133-
* Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names.
134-
*/
120+
/** Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names. */
135121
transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode): IDBTransaction;
136122
}
137123

@@ -175,33 +161,21 @@ interface Navigator {
175161

176162
interface NodeList {
177163
[Symbol.iterator](): IterableIterator<Node>;
178-
/**
179-
* Returns an array of key, value pairs for every entry in the list.
180-
*/
164+
/** Returns an array of key, value pairs for every entry in the list. */
181165
entries(): IterableIterator<[number, Node]>;
182-
/**
183-
* Returns an list of keys in the list.
184-
*/
166+
/** Returns an list of keys in the list. */
185167
keys(): IterableIterator<number>;
186-
/**
187-
* Returns an list of values in the list.
188-
*/
168+
/** Returns an list of values in the list. */
189169
values(): IterableIterator<Node>;
190170
}
191171

192172
interface NodeListOf<TNode extends Node> {
193173
[Symbol.iterator](): IterableIterator<TNode>;
194-
/**
195-
* Returns an array of key, value pairs for every entry in the list.
196-
*/
174+
/** Returns an array of key, value pairs for every entry in the list. */
197175
entries(): IterableIterator<[number, TNode]>;
198-
/**
199-
* Returns an list of keys in the list.
200-
*/
176+
/** Returns an list of keys in the list. */
201177
keys(): IterableIterator<number>;
202-
/**
203-
* Returns an list of values in the list.
204-
*/
178+
/** Returns an list of values in the list. */
205179
values(): IterableIterator<TNode>;
206180
}
207181

@@ -283,17 +257,11 @@ interface TouchList {
283257

284258
interface URLSearchParams {
285259
[Symbol.iterator](): IterableIterator<[string, string]>;
286-
/**
287-
* Returns an array of key, value pairs for every entry in the search params.
288-
*/
260+
/** Returns an array of key, value pairs for every entry in the search params. */
289261
entries(): IterableIterator<[string, string]>;
290-
/**
291-
* Returns a list of keys in the search params.
292-
*/
262+
/** Returns a list of keys in the search params. */
293263
keys(): IterableIterator<string>;
294-
/**
295-
* Returns a list of values in the search params.
296-
*/
264+
/** Returns a list of values in the search params. */
297265
values(): IterableIterator<string>;
298266
}
299267

0 commit comments

Comments
 (0)