UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

8 lines 280 B
import { Range } from "../common/helpers"; export interface RandomParams { min: number; max: number; precision: Range<0, 17>; } export declare function random(parameters?: Partial<RandomParams>): Generator<number, void, undefined>; //# sourceMappingURL=random.d.ts.map