UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

12 lines (11 loc) 258 B
/** * @module Collection */ /** * @internal */ export declare class EntriesIterable<TInput> implements Iterable<[number, TInput]> { private iterable; constructor(iterable: Iterable<TInput>); [Symbol.iterator](): Iterator<[number, TInput]>; }