rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
11 lines • 323 B
TypeScript
/**
* @public
* Create a random value between min and max.
*
* @remarks
* NaN input will cause a debug error. Max greater than min will cause a debug error.
*
* See {@link mathBoundRandom}.
*/
export declare function mathBoundRandom(min: number, max: number): number;
//# sourceMappingURL=math-bound-random.d.ts.map