We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
keys
values
forEach,
1 parent 875328c commit 8cac528Copy full SHA for 8cac528
1 file changed
src/lib/dom.iterable.d.ts
@@ -5,6 +5,10 @@ interface DOMTokenList {
5
}
6
7
interface NodeList {
8
+ keys(): IterableIterator<number>;
9
+ values(): IterableIterator<[number, Node]>;
10
+ entries(): IterableIterator<Node>;
11
+ forEach(): void;
12
[Symbol.iterator](): IterableIterator<Node>
13
14
0 commit comments