randomInt
import { randomInt } from "https://raw.githubusercontent.com/JOTSR/Denum/master/mod.ts";Generate a bounded random integer
function randomInt(min: number, max: number): number;
function randomInt(min: bigint, max: bigint): bigint;
function randomInt<T extends number | bigint>(min: T, max: T): T;