DomIterable
interface DomIterable
<K, V> {
[[Symbol.iterator]](): IterableIterator<[K, V]>;
entries(): IterableIterator<[K, V]>;
forEach(
callback: (
value: V,
key: K,
parent: this,
) => void, thisArg?: any)
: void;
keys(): IterableIterator<K>;
values(): IterableIterator<V>;
}
Methods
[[Symbol.iterator]](): IterableIterator<[K, V]>
entries(): IterableIterator<[K, V]>
forEach(
callback: (
value: V,
key: K,
parent: this,
) => void, thisArg?: any)
: void
keys(): IterableIterator<K>
values(): IterableIterator<V>