nextSunday
import { nextSunday } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// When is the next Sunday after Mar, 22, 2020?
const result = nextSunday(new Date(2020, 2, 22))
//=> Sun Mar 29 2020 00:00:00
function nextSunday<DateType extends Date>(date: DateType | number | string): DateType;