@@ -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+
1538515401interface 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+ }
0 commit comments