UNPKG

370 BTypeScriptView Raw
1/**
2 * @name startOfTomorrow
3 * @category Day Helpers
4 * @summary Return the start of tomorrow.
5 * @pure false
6 *
7 * @description
8 * Return the start of tomorrow.
9 *
10 * @returns The start of tomorrow
11 *
12 * @example
13 * // If today is 6 October 2014:
14 * const result = startOfTomorrow()
15 * //=> Tue Oct 7 2014 00:00:00
16 */
17export declare function startOfTomorrow(): Date;