max
import { max } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// Which of these dates is the latest?
const result = max([
new Date(1989, 6, 10),
new Date(1987, 1, 11),
new Date(1995, 6, 2),
new Date(1990, 0, 1)
])
//=> Sun Jul 02 1995 00:00:00
function max<DateType extends Date>(dates: Array<DateType | number | string>): DateType | Date;