Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/ee8519d47f5de49ff2996cc09b06c2af30a6f4daf62e7f4c370ed63fcba765f84897590709cb2be72393b71a619e1350ca7a3b2690412ae88c0ab0a25d387b
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

45 lines
1.5 KiB
Text

export declare const errorCodes: {
EMPTY_STRING: string;
FORBIDDEN_UNICODE: string;
MULTIPLE_AT_CHAR: string;
MISSING_AT_CHAR: string;
EMPTY_LOCAL: string;
ADDRESS_TOO_LONG: string;
LOCAL_TOO_LONG: string;
EMPTY_LOCAL_SEGMENT: string;
INVALID_LOCAL_CHARS: string;
DOMAIN_NON_EMPTY_STRING: string;
DOMAIN_TOO_LONG: string;
DOMAIN_INVALID_UNICODE_CHARS: string;
DOMAIN_INVALID_CHARS: string;
DOMAIN_INVALID_TLDS_CHARS: string;
DOMAIN_SEGMENTS_COUNT: string;
DOMAIN_SEGMENTS_COUNT_MAX: string;
DOMAIN_FORBIDDEN_TLDS: string;
DOMAIN_EMPTY_SEGMENT: string;
DOMAIN_LONG_SEGMENT: string;
};
export declare function errorCode<TCode extends keyof typeof errorCodes>(code: TCode): {
code: TCode;
error: {
EMPTY_STRING: string;
FORBIDDEN_UNICODE: string;
MULTIPLE_AT_CHAR: string;
MISSING_AT_CHAR: string;
EMPTY_LOCAL: string;
ADDRESS_TOO_LONG: string;
LOCAL_TOO_LONG: string;
EMPTY_LOCAL_SEGMENT: string;
INVALID_LOCAL_CHARS: string;
DOMAIN_NON_EMPTY_STRING: string;
DOMAIN_TOO_LONG: string;
DOMAIN_INVALID_UNICODE_CHARS: string;
DOMAIN_INVALID_CHARS: string;
DOMAIN_INVALID_TLDS_CHARS: string;
DOMAIN_SEGMENTS_COUNT: string;
DOMAIN_SEGMENTS_COUNT_MAX: string;
DOMAIN_FORBIDDEN_TLDS: string;
DOMAIN_EMPTY_SEGMENT: string;
DOMAIN_LONG_SEGMENT: string;
}[TCode];
};