UNPKG

@halloverden/number-utilities-ts

Version:

Typescript library with utility functions for a bunch of numbers

8 lines (7 loc) 182 B
/** * Returns a random number from the given range of numbers * * @param min * @param max */ export declare function getRandomNumberFromRange(min: number, max: number): number;