Rocky_Mountain_Vending/.pnpm-store/v10/files/6f/757eb69e64a36d572ff5c05d07567cb3ce1f210cec575a88f35120fe7b1089d90f8a7d6b21feb91bd9626ba86ea824f351544c8f360d16f6388e834ae17cdd
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

5 lines
311 B
Text

export declare function isHydrationError(error: unknown): boolean;
export declare function isHydrationWarning(message: unknown): message is string;
type NullableText = string | null | undefined;
export declare const getHydrationWarningType: (message: NullableText) => "tag" | "text" | "text-in-tag";
export {};