Rocky_Mountain_Vending/.pnpm-store/v10/files/de/df4b0979c52b3939de20b451d1909243a24bab48e75e803e047cb2f677a430ffb41ebe787057d427f3aa2f79476f4d6fceb2b0fd40714754e57c0328859ac6
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

21 lines
471 B
Text

/**
* Runtime file cache.
* @internal
*/
export declare const filePromises: Record<string, Promise<string>>;
/**
* For testing only.
* @internal
* @deprecated minimize use in application code.
*/
export declare const fileIntercept: Record<string, Promise<string>>;
/**
* @internal
*/
export interface ReadFileOptions {
ignoreCache?: boolean;
}
/**
* @internal
*/
export declare const readFile: (path: string, options?: ReadFileOptions) => Promise<string>;