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.

13 lines (12 loc) 372 B
/** * @module Collection */ import { type AsyncIterableValue } from "../../../../utilities/_module-exports.js"; /** * @internal */ export declare class AsyncEntriesIterable<TInput> implements AsyncIterable<[number, TInput]> { private iterable; constructor(iterable: AsyncIterableValue<TInput>); [Symbol.asyncIterator](): AsyncIterator<[number, TInput]>; }