UNPKG

361 BTypeScriptView Raw
1import { Distribution } from "../types";
2/**
3 * Returns a Distribution to return a value within [min, max]
4 * @param min The minimum integer value, inclusive. No less than -0x20000000000000.
5 * @param max The maximum integer value, inclusive. No greater than 0x20000000000000.
6 */
7export declare function integer(min: number, max: number): Distribution;