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