Skip to main content
interface DomIterable

Methods

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