1 | import { 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 | */
|
8 | export declare function date(start: Date, end: Date): Distribution<Date>;
|