/** * Rolls a random number inclusively between a min and max. * * @param min The lower limit of the roll * @param max The upper limit of the roll */ export declare function randInt(min: number, max: number): number; /** * Rolls a random floating point number inclusively between min and max. * * @param {number} min - min number * @param {number} max - max number * @return {number} A random float */ export declare function randFloat(min: number, max: number): number; /** * Rolls a 1 in X chance, returning true on successfull rolls. * * @param upperLimit The upper limit of the roll */ export declare function roll(upperLimit: number): boolean; /** * Returns true based on a percent chance. * * @param percent The percent to have a chance of. */ export declare function percentChance(percent: number): boolean; //# sourceMappingURL=chance.d.ts.map