UNPKG

305 BTypeScriptView Raw
1import { Distribution } from "../types";
2/**
3 * Returns a Distribution that returns a random `Date` within the inclusive
4 * range of [`start`, `end`].
5 * @param start The minimum `Date`
6 * @param end The maximum `Date`
7 */
8export declare function date(start: Date, end: Date): Distribution<Date>;