Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/3de3c0537b32d7385e1c4300dff7aab103c0fdcb1063d817704f896d51af7d309f098eb6e2149db7e6b2d99a4f6cd00940694ac90684a10106b423c088aee6
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

11 lines
310 B
Text

import type { OverlayState } from '../../next-devtools/dev-overlay/shared';
export interface OverlayStateWithUrl {
url: string;
errorState: OverlayState | null;
}
export interface McpErrorStateResponse {
event: string;
requestId: string;
errorState: OverlayState | null;
url: string;
}