• Compression Streams API
  • Console and Debugging
  • DOM APIs
  • DOM Events
  • Encoding API
  • Fetch API
  • Fleek Node API
  • Observability
  • Scheduling
  • Streams API
  • Timers
  • Typed Arrays
  • Web APIs
  • Web Crypto API
  • Web File API
  • WebAssembly
  • WebGPU
  • WebSockets
  • Uncategorized
  • view all 376 symbols
  • Fleek Runtime APIs
  • DOM APIs
    • DomIterable
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

Document Navigation

  • Type Parameters
    • K
    • V
  • Methods
    • keys
    • values
    • entries
    • [[Symbol.iterator]]
    • forEach