Rocky_Mountain_Vending/.pnpm-store/v10/files/69/9821bd5ad2265c81bc2724e8af48a9323e9fac9925aad86ff533ca468cf9c1970c34f34eae38424c322b22072c28ae8dd83c38cd27f941cc0d72f73c30730a
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

8 lines
543 B
Text

import type { OverlayState } from '../../../../next-devtools/dev-overlay/shared';
import type { OriginalStackFramesRequest, OriginalStackFramesResponse } from '../../../../next-devtools/server/shared';
type StackFrameResolver = (request: OriginalStackFramesRequest) => Promise<OriginalStackFramesResponse>;
export declare function setStackFrameResolver(fn: StackFrameResolver): void;
export declare function formatErrors(errorsByUrl: Map<string, OverlayState>, nextInstanceErrors?: {
nextConfig: unknown[];
}): Promise<string>;
export {};