We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62e8881 + cac6045 commit 3ab7c86Copy full SHA for 3ab7c86
src/lib/dom.iterable.d.ts
@@ -4,6 +4,23 @@ interface DOMTokenList {
4
[Symbol.iterator](): IterableIterator<string>;
5
}
6
7
+interface FormData {
8
+ /**
9
+ * Returns an array of key, value pairs for every entry in the list
10
+ */
11
+ entries(): IterableIterator<[string, string | File]>;
12
13
+ * Returns a list of keys in the list
14
15
+ keys(): IterableIterator<string>;
16
17
+ * Returns a list of values in the list
18
19
+ values(): IterableIterator<string | File>;
20
+
21
+ [Symbol.iterator](): IterableIterator<string | File>;
22
+}
23
24
interface NodeList {
25
/**
26
* Returns an array of key, value pairs for every entry in the list
0 commit comments