Current section

Files

Jump to
spellweaver priv bun node_modules gensequence dist util util.d.ts
Raw

priv/bun/node_modules/gensequence/dist/util/util.d.ts

export declare function toIterator<T>(values: Iterable<T> | IterableIterator<T>): {
next: () => IteratorResult<T, any>;
};
export declare function toIterableIterator<T>(i: Iterable<T>): Generator<T, void, undefined>;