( date: DateArg<DateType>, options?: NextSundayOptions<ResultDate> | undefined, )
| 30 | * //=> Sun Mar 29 2020 00:00:00 |
| 31 | */ |
| 32 | export function nextSunday< |
| 33 | DateType extends Date, |
| 34 | ResultDate extends Date = DateType, |
| 35 | >( |
| 36 | date: DateArg<DateType>, |
| 37 | options?: NextSundayOptions<ResultDate> | undefined, |
| 38 | ): ResultDate { |
| 39 | return nextDay(date, 0, options); |
| 40 | } |