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) 297 B
/** * @module Collection */ /** * @internal */ export declare class ShuffleIterable<TInput> implements Iterable<TInput> { private iterable; private readonly mathRandom; constructor(iterable: Iterable<TInput>, mathRandom: () => number); [Symbol.iterator](): Iterator<TInput>; }