Rocky_Mountain_Vending/.pnpm-store/v10/files/16/fb28adee620cfe4e7cdf57f99140adb6d90312d37826c643b5cc47ad595d8cee1fe8ed0a213a4d3665e595e302ad46fb1670894f8e952c1a7e2a914a17d35d
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

9 lines
503 B
Text

export declare const REACT_HYDRATION_ERROR_LINK = "https://react.dev/link/hydration-mismatch";
export declare const NEXTJS_HYDRATION_ERROR_LINK = "https://nextjs.org/docs/messages/react-hydration-error";
export declare function isHydrationError(error: Error): boolean;
export declare function isErrorMessageWithComponentStackDiff(msg: string): boolean;
export declare function getHydrationErrorStackInfo(error: Error): {
message: string | null;
notes: string | null;
diff: string | null;
};