Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/56f7c0b636e5ac8d29c44ceb5ca7618e114376ccc79b2a1777d26bc9178c4d19afe8ba410eaa9b34e83330e633c2d0666ed94fa454b3a93248956edc78f131
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

10 lines
283 B
Text

type VArgs = [/* value: */ /* value: */ number | string | Date];
type DArgs = [number, number, number?, number?, number?, number?, number?];
type Args = [] | VArgs | DArgs;
/**
*
* @param args
* @returns {Date}
*/
export declare function newDate(...args: Args): Date;
export {};