UNPKG

softkave-js-utils

Version:

JavaScript & Typescript utility functions, types, and classes

8 lines (7 loc) 275 B
/** Generates a random number between `min` and `max`. `min` is inclusive and * `max` is exclusive */ export declare function getRandomInt( /** `min` is inclusive and `max` is exclusive */ min: number, /** `max` is exclusive and `min` is inclusive */ max: number): number;