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