Rocky_Mountain_Vending/.pnpm-store/v10/files/7d/058fdb1c54507c775780c6910ee7c7d0961a1c68b4ec53531e4b31b250052ef28c0b66cd8e98991ee3738a0de2ac252b2f5e7adbcaeabd7d9743c6e9e55f68
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

8 lines
381 B
Text

import type { ZodError } from 'next/dist/compiled/zod';
import { type ZodIssue } from 'next/dist/compiled/zod';
export declare function normalizeZodErrors(error: ZodError): {
issue: ZodIssue;
message: string;
}[];
export declare function formatZodError(prefix: string, error: ZodError): Error;
export declare function reportZodError(prefix: string, error: ZodError): void;