Skip to content

Commit

Permalink
Update LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
mhegazy committed Apr 24, 2017
1 parent 3c3b73e commit 8a85f4a
Show file tree
Hide file tree
Showing 14 changed files with 35,023 additions and 34,434 deletions.
35 changes: 35 additions & 0 deletions lib/lib.dom.iterable.d.ts
Expand Up @@ -41,6 +41,22 @@ interface FormData {
[Symbol.iterator](): IterableIterator<string | File>;
}

interface Headers {
[Symbol.iterator](): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all key/value pairs contained in this object.
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
*/
keys(): IterableIterator<string>;
/**
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
*/
values(): IterableIterator<string>;
}

interface NodeList {
/**
* Returns an array of key, value pairs for every entry in the list
Expand Down Expand Up @@ -90,3 +106,22 @@ interface NodeListOf<TNode extends Node> {

[Symbol.iterator](): IterableIterator<TNode>;
}

interface URLSearchParams {
/**
* Returns an array of key, value pairs for every entry in the search params
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns a list of keys in the search params
*/
keys(): IterableIterator<string>;
/**
* Returns a list of values in the search params
*/
values(): IterableIterator<string>;
/**
* iterate over key/value pairs
*/
[Symbol.iterator](): IterableIterator<[string, string]>;
}
35 changes: 35 additions & 0 deletions lib/lib.es2016.full.d.ts
Expand Up @@ -15382,6 +15382,22 @@ interface FormData {
[Symbol.iterator](): IterableIterator<string | File>;
}

interface Headers {
[Symbol.iterator](): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all key/value pairs contained in this object.
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
*/
keys(): IterableIterator<string>;
/**
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
*/
values(): IterableIterator<string>;
}

interface NodeList {
/**
* Returns an array of key, value pairs for every entry in the list
Expand Down Expand Up @@ -15431,3 +15447,22 @@ interface NodeListOf<TNode extends Node> {

[Symbol.iterator](): IterableIterator<TNode>;
}

interface URLSearchParams {
/**
* Returns an array of key, value pairs for every entry in the search params
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns a list of keys in the search params
*/
keys(): IterableIterator<string>;
/**
* Returns a list of values in the search params
*/
values(): IterableIterator<string>;
/**
* iterate over key/value pairs
*/
[Symbol.iterator](): IterableIterator<[string, string]>;
}
35 changes: 35 additions & 0 deletions lib/lib.es2017.full.d.ts
Expand Up @@ -15384,6 +15384,22 @@ interface FormData {
[Symbol.iterator](): IterableIterator<string | File>;
}

interface Headers {
[Symbol.iterator](): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all key/value pairs contained in this object.
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
*/
keys(): IterableIterator<string>;
/**
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
*/
values(): IterableIterator<string>;
}

interface NodeList {
/**
* Returns an array of key, value pairs for every entry in the list
Expand Down Expand Up @@ -15433,3 +15449,22 @@ interface NodeListOf<TNode extends Node> {

[Symbol.iterator](): IterableIterator<TNode>;
}

interface URLSearchParams {
/**
* Returns an array of key, value pairs for every entry in the search params
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns a list of keys in the search params
*/
keys(): IterableIterator<string>;
/**
* Returns a list of values in the search params
*/
values(): IterableIterator<string>;
/**
* iterate over key/value pairs
*/
[Symbol.iterator](): IterableIterator<[string, string]>;
}
35 changes: 35 additions & 0 deletions lib/lib.es6.d.ts
Expand Up @@ -21400,6 +21400,22 @@ interface FormData {
[Symbol.iterator](): IterableIterator<string | File>;
}

interface Headers {
[Symbol.iterator](): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all key/value pairs contained in this object.
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
*/
keys(): IterableIterator<string>;
/**
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
*/
values(): IterableIterator<string>;
}

interface NodeList {
/**
* Returns an array of key, value pairs for every entry in the list
Expand Down Expand Up @@ -21449,3 +21465,22 @@ interface NodeListOf<TNode extends Node> {

[Symbol.iterator](): IterableIterator<TNode>;
}

interface URLSearchParams {
/**
* Returns an array of key, value pairs for every entry in the search params
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns a list of keys in the search params
*/
keys(): IterableIterator<string>;
/**
* Returns a list of values in the search params
*/
values(): IterableIterator<string>;
/**
* iterate over key/value pairs
*/
[Symbol.iterator](): IterableIterator<[string, string]>;
}
35 changes: 35 additions & 0 deletions lib/lib.esnext.full.d.ts
Expand Up @@ -15383,6 +15383,22 @@ interface FormData {
[Symbol.iterator](): IterableIterator<string | File>;
}

interface Headers {
[Symbol.iterator](): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all key/value pairs contained in this object.
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
*/
keys(): IterableIterator<string>;
/**
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
*/
values(): IterableIterator<string>;
}

interface NodeList {
/**
* Returns an array of key, value pairs for every entry in the list
Expand Down Expand Up @@ -15432,3 +15448,22 @@ interface NodeListOf<TNode extends Node> {

[Symbol.iterator](): IterableIterator<TNode>;
}

interface URLSearchParams {
/**
* Returns an array of key, value pairs for every entry in the search params
*/
entries(): IterableIterator<[string, string]>;
/**
* Returns a list of keys in the search params
*/
keys(): IterableIterator<string>;
/**
* Returns a list of values in the search params
*/
values(): IterableIterator<string>;
/**
* iterate over key/value pairs
*/
[Symbol.iterator](): IterableIterator<[string, string]>;
}

0 comments on commit 8a85f4a

Please sign in to comment.