UNPKG

@cc-heart/utils

Version:

🔧 javascript common tools collection

9 lines (8 loc) • 296 B
/** * Generates a random integer between min (inclusive) and max (inclusive). * * @param min - The minimum value (inclusive). * @param max - The maximum value (inclusive). * @returns A random integer between min and max. */ export declare function random(min: number, max: number): number;