exportinterface EndOfTodayOptions<DateType extends Date = Date>
6
extends ContextOptions<DateType> {}
7
/**
8
* @name endOfToday
9
* @category Day Helpers
10
* @summary Return the end of today.
11
* @pure false
12
*
13
* @description
14
* Return the end of today.
15
*
16
* @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).
17
* @typeParam ResultDate - The result `Date` type, it is the type returned from the context function if it is passed, or inferred from the arguments.