Rocky_Mountain_Vending/.pnpm-store/v10/files/fe/93f85e3de9318f7130d9745ea3eafd2a4181c5c3f0326fbb6169c619a8fa3a599268a15e4076d3633350c3fbfffb8d9bcb74708719ea6bc7262443124c864e
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

20 lines
1,006 B
Text

import { PureComponent } from 'react';
import type { GlobalErrorState } from '../../../client/components/app-router-instance';
type AppDevOverlayErrorBoundaryProps = {
children: React.ReactNode;
globalError: GlobalErrorState;
};
type AppDevOverlayErrorBoundaryState = {
reactError: unknown;
};
export declare class AppDevOverlayErrorBoundary extends PureComponent<AppDevOverlayErrorBoundaryProps, AppDevOverlayErrorBoundaryState> {
state: {
reactError: null;
};
static getDerivedStateFromError(error: Error): {
reactError: Error;
};
componentDidCatch(err: Error): void;
render(): string | number | bigint | boolean | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ReactPortal | Iterable<import("react").ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;
}
export {};