File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,21 @@ interface FormData {
21
21
[ Symbol . iterator ] ( ) : IterableIterator < string | File > ;
22
22
}
23
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
+
24
39
interface NodeList {
25
40
/**
26
41
* Returns an array of key, value pairs for every entry in the list
You can’t perform that action at this time.
0 commit comments