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>
20 lines
1,006 B
Text
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 {};
|