Rocky_Mountain_Vending/.pnpm-store/v10/files/95/612b1c81ca938eecf790e024c4ef70a90f804d348944e7a70daf6d20b549c8e278ea38b723288c31157b4fbcb49c0bf58adcd213e920e8ae154dace2b41534
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

28 lines
634 B
Text

export declare const numericPatterns: {
month: RegExp;
date: RegExp;
dayOfYear: RegExp;
week: RegExp;
hour23h: RegExp;
hour24h: RegExp;
hour11h: RegExp;
hour12h: RegExp;
minute: RegExp;
second: RegExp;
singleDigit: RegExp;
twoDigits: RegExp;
threeDigits: RegExp;
fourDigits: RegExp;
anyDigitsSigned: RegExp;
singleDigitSigned: RegExp;
twoDigitsSigned: RegExp;
threeDigitsSigned: RegExp;
fourDigitsSigned: RegExp;
};
export declare const timezonePatterns: {
basicOptionalMinutes: RegExp;
basic: RegExp;
basicOptionalSeconds: RegExp;
extended: RegExp;
extendedOptionalSeconds: RegExp;
};