Rocky_Mountain_Vending/.pnpm-store/v10/files/f2/67bfda10f3d5738cb6d0c11b359b27447562daf4ba5aef761e93745097adde0c0fd9c4df8b1371ec6fa0b2e9352e110e289b80b704fed8d558f46792ba9c16
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
492 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>;