getMinutes
import { getMinutes } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// Get the minutes of 29 February 2012 11:45:05:
const result = getMinutes(new Date(2012, 1, 29, 11, 45, 5))
//=> 45
function getMinutes<DateType extends Date>(date: DateType | number | string): number;