UNPKG

242 BTypeScriptView Raw
1import { Distribution } from "../types";
2/**
3 * Returns a Distribution to return a value within [1, sideCount]
4 * @param sideCount The number of sides of the die
5 */
6export declare function die(sideCount: number): Distribution<number>;