Rocky_Mountain_Vending/.pnpm-store/v10/files/49/49b96ad99a6c7220eea310b88245eb9eefe35a49f2fcd3001378ca3454c7b872179db886e8415f83e8ae70f95b217595644fcac2b5e56db00e94ab872f82b7
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

23 lines
702 B
Text

/**
* @name newDate
* @category Common Helpers
* @summary Create a date object of the given params.
*
* @param {Number} year - the number of years
* @param {Number} monthIndex - the number of months 0-11
* @param {Number} date - the number of days 1-31
* @param {Number} [hours=0] - the number of hours 0-23
* @param {Number} [minutes=0] - the number of minutes 0-59
* @param {Number} [seconds=0] - the number of seconds 0-59
* @param {Number} [ms=0] - the number of milliseconds 0-999
* @returns {Date} the new date
*/
export declare function newDate(
year: number,
monthIndex: number,
date: number,
hours?: number,
minutes?: number,
seconds?: number,
ms?: number,
): Date;