Skip to content

Commit 8a85f4a

Browse files
committed
Update LKG
1 parent 3c3b73e commit 8a85f4a

14 files changed

+35023
-34434
lines changed

lib/lib.dom.iterable.d.ts

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,22 @@ interface FormData {
4141
[Symbol.iterator](): IterableIterator<string | File>;
4242
}
4343

44+
interface Headers {
45+
[Symbol.iterator](): IterableIterator<[string, string]>;
46+
/**
47+
* Returns an iterator allowing to go through all key/value pairs contained in this object.
48+
*/
49+
entries(): IterableIterator<[string, string]>;
50+
/**
51+
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
52+
*/
53+
keys(): IterableIterator<string>;
54+
/**
55+
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
56+
*/
57+
values(): IterableIterator<string>;
58+
}
59+
4460
interface NodeList {
4561
/**
4662
* Returns an array of key, value pairs for every entry in the list
@@ -90,3 +106,22 @@ interface NodeListOf<TNode extends Node> {
90106

91107
[Symbol.iterator](): IterableIterator<TNode>;
92108
}
109+
110+
interface URLSearchParams {
111+
/**
112+
* Returns an array of key, value pairs for every entry in the search params
113+
*/
114+
entries(): IterableIterator<[string, string]>;
115+
/**
116+
* Returns a list of keys in the search params
117+
*/
118+
keys(): IterableIterator<string>;
119+
/**
120+
* Returns a list of values in the search params
121+
*/
122+
values(): IterableIterator<string>;
123+
/**
124+
* iterate over key/value pairs
125+
*/
126+
[Symbol.iterator](): IterableIterator<[string, string]>;
127+
}

lib/lib.es2016.full.d.ts

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15382,6 +15382,22 @@ interface FormData {
1538215382
[Symbol.iterator](): IterableIterator<string | File>;
1538315383
}
1538415384

15385+
interface Headers {
15386+
[Symbol.iterator](): IterableIterator<[string, string]>;
15387+
/**
15388+
* Returns an iterator allowing to go through all key/value pairs contained in this object.
15389+
*/
15390+
entries(): IterableIterator<[string, string]>;
15391+
/**
15392+
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
15393+
*/
15394+
keys(): IterableIterator<string>;
15395+
/**
15396+
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
15397+
*/
15398+
values(): IterableIterator<string>;
15399+
}
15400+
1538515401
interface NodeList {
1538615402
/**
1538715403
* Returns an array of key, value pairs for every entry in the list
@@ -15431,3 +15447,22 @@ interface NodeListOf<TNode extends Node> {
1543115447

1543215448
[Symbol.iterator](): IterableIterator<TNode>;
1543315449
}
15450+
15451+
interface URLSearchParams {
15452+
/**
15453+
* Returns an array of key, value pairs for every entry in the search params
15454+
*/
15455+
entries(): IterableIterator<[string, string]>;
15456+
/**
15457+
* Returns a list of keys in the search params
15458+
*/
15459+
keys(): IterableIterator<string>;
15460+
/**
15461+
* Returns a list of values in the search params
15462+
*/
15463+
values(): IterableIterator<string>;
15464+
/**
15465+
* iterate over key/value pairs
15466+
*/
15467+
[Symbol.iterator](): IterableIterator<[string, string]>;
15468+
}

lib/lib.es2017.full.d.ts

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15384,6 +15384,22 @@ interface FormData {
1538415384
[Symbol.iterator](): IterableIterator<string | File>;
1538515385
}
1538615386

15387+
interface Headers {
15388+
[Symbol.iterator](): IterableIterator<[string, string]>;
15389+
/**
15390+
* Returns an iterator allowing to go through all key/value pairs contained in this object.
15391+
*/
15392+
entries(): IterableIterator<[string, string]>;
15393+
/**
15394+
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
15395+
*/
15396+
keys(): IterableIterator<string>;
15397+
/**
15398+
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
15399+
*/
15400+
values(): IterableIterator<string>;
15401+
}
15402+
1538715403
interface NodeList {
1538815404
/**
1538915405
* Returns an array of key, value pairs for every entry in the list
@@ -15433,3 +15449,22 @@ interface NodeListOf<TNode extends Node> {
1543315449

1543415450
[Symbol.iterator](): IterableIterator<TNode>;
1543515451
}
15452+
15453+
interface URLSearchParams {
15454+
/**
15455+
* Returns an array of key, value pairs for every entry in the search params
15456+
*/
15457+
entries(): IterableIterator<[string, string]>;
15458+
/**
15459+
* Returns a list of keys in the search params
15460+
*/
15461+
keys(): IterableIterator<string>;
15462+
/**
15463+
* Returns a list of values in the search params
15464+
*/
15465+
values(): IterableIterator<string>;
15466+
/**
15467+
* iterate over key/value pairs
15468+
*/
15469+
[Symbol.iterator](): IterableIterator<[string, string]>;
15470+
}

lib/lib.es6.d.ts

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21400,6 +21400,22 @@ interface FormData {
2140021400
[Symbol.iterator](): IterableIterator<string | File>;
2140121401
}
2140221402

21403+
interface Headers {
21404+
[Symbol.iterator](): IterableIterator<[string, string]>;
21405+
/**
21406+
* Returns an iterator allowing to go through all key/value pairs contained in this object.
21407+
*/
21408+
entries(): IterableIterator<[string, string]>;
21409+
/**
21410+
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
21411+
*/
21412+
keys(): IterableIterator<string>;
21413+
/**
21414+
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
21415+
*/
21416+
values(): IterableIterator<string>;
21417+
}
21418+
2140321419
interface NodeList {
2140421420
/**
2140521421
* Returns an array of key, value pairs for every entry in the list
@@ -21449,3 +21465,22 @@ interface NodeListOf<TNode extends Node> {
2144921465

2145021466
[Symbol.iterator](): IterableIterator<TNode>;
2145121467
}
21468+
21469+
interface URLSearchParams {
21470+
/**
21471+
* Returns an array of key, value pairs for every entry in the search params
21472+
*/
21473+
entries(): IterableIterator<[string, string]>;
21474+
/**
21475+
* Returns a list of keys in the search params
21476+
*/
21477+
keys(): IterableIterator<string>;
21478+
/**
21479+
* Returns a list of values in the search params
21480+
*/
21481+
values(): IterableIterator<string>;
21482+
/**
21483+
* iterate over key/value pairs
21484+
*/
21485+
[Symbol.iterator](): IterableIterator<[string, string]>;
21486+
}

lib/lib.esnext.full.d.ts

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15383,6 +15383,22 @@ interface FormData {
1538315383
[Symbol.iterator](): IterableIterator<string | File>;
1538415384
}
1538515385

15386+
interface Headers {
15387+
[Symbol.iterator](): IterableIterator<[string, string]>;
15388+
/**
15389+
* Returns an iterator allowing to go through all key/value pairs contained in this object.
15390+
*/
15391+
entries(): IterableIterator<[string, string]>;
15392+
/**
15393+
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
15394+
*/
15395+
keys(): IterableIterator<string>;
15396+
/**
15397+
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
15398+
*/
15399+
values(): IterableIterator<string>;
15400+
}
15401+
1538615402
interface NodeList {
1538715403
/**
1538815404
* Returns an array of key, value pairs for every entry in the list
@@ -15432,3 +15448,22 @@ interface NodeListOf<TNode extends Node> {
1543215448

1543315449
[Symbol.iterator](): IterableIterator<TNode>;
1543415450
}
15451+
15452+
interface URLSearchParams {
15453+
/**
15454+
* Returns an array of key, value pairs for every entry in the search params
15455+
*/
15456+
entries(): IterableIterator<[string, string]>;
15457+
/**
15458+
* Returns a list of keys in the search params
15459+
*/
15460+
keys(): IterableIterator<string>;
15461+
/**
15462+
* Returns a list of values in the search params
15463+
*/
15464+
values(): IterableIterator<string>;
15465+
/**
15466+
* iterate over key/value pairs
15467+
*/
15468+
[Symbol.iterator](): IterableIterator<[string, string]>;
15469+
}

0 commit comments

Comments
 (0)