We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1a2006 + 2713501 commit bb8a875Copy full SHA for bb8a875
1 file changed
src/lib/dom.iterable.d.ts
@@ -21,6 +21,22 @@ interface FormData {
21
[Symbol.iterator](): IterableIterator<string | File>;
22
}
23
24
+interface Headers {
25
+ [Symbol.iterator](): IterableIterator<[string, string]>;
26
+ /**
27
+ * Returns an iterator allowing to go through all key/value pairs contained in this object.
28
+ */
29
+ entries(): IterableIterator<[string, string]>;
30
31
+ * Returns an iterator allowing to go through all keys f the key/value pairs contained in this object.
32
33
+ keys(): IterableIterator<string>;
34
35
+ * Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
36
37
+ values(): IterableIterator<string>;
38
+}
39
+
40
interface NodeList {
41
/**
42
* Returns an array of key, value pairs for every entry in the list
0 commit comments