UNPKG

mimicry-js

Version:

TS library for generating fake data for tests

10 lines 350 B
/** * Generated random float value * * @param min - Lower bound of the number. Default is 0. * @param max - Upper bound of the number. Default is 1. */ export declare function float(): number; export declare function float(max: number): number; export declare function float(min: number, max: number): number; //# sourceMappingURL=float.d.ts.map