Skip to main content
interface DomIterable

Type Parameters

K
V

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
Back to top