Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/620a023b49eb39ecf4b887b1f5b8da46a8982d4221f04c633c566dcb967c52fec4ca462d81587ee7ca2f8bc1a99f4c693c0a30cff9a9e38e1248380b62b7d0
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

27 lines
691 B
Text

import type { ContextOptions, DateArg } from "./types.js";
/**
* The {@link getMinutes} function options.
*/
export interface GetMinutesOptions extends ContextOptions<Date> {}
/**
* @name getMinutes
* @category Minute Helpers
* @summary Get the minutes of the given date.
*
* @description
* Get the minutes of the given date.
*
* @param date - The given date
* @param options - The options
*
* @returns The minutes
*
* @example
* // Get the minutes of 29 February 2012 11:45:05:
* const result = getMinutes(new Date(2012, 1, 29, 11, 45, 5))
* //=> 45
*/
export declare function getMinutes(
date: DateArg<Date> & {},
options?: GetMinutesOptions | undefined,
): number;