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>
21 lines
492 B
Text
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>;
|