Rocky_Mountain_Vending/.pnpm-store/v10/files/bb/d16d65c9d0edfb9daa219880e8127fc9aecb347ddbb1f9787e261f931666496f736031f14a789111f6bfe1d0ddafe268675dc0c37dac2485ff0574bff569b7
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

7 lines
326 B
Text

import type { ExportAppResult, ExportAppOptions } from './types';
import '../server/require-hook';
import type { Span } from '../trace';
export declare class ExportError extends Error {
code: string;
}
export default function exportApp(dir: string, options: ExportAppOptions, span: Span): Promise<ExportAppResult | null>;