Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/c98e3b01b6e90981295ee04b304db7c46add75c3003769c05dc5f212490fa31cbb0336dbae4ea432d34518f03b447a18188252f8e36e11a95354fe2605b155
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

22 lines
811 B
Text

export type Env = {
[key: string]: string | undefined;
};
export type LoadedEnvFiles = Array<{
path: string;
contents: string;
env: Env;
}>;
export declare let initialEnv: Env | undefined;
export declare function updateInitialEnv(newEnv: Env): void;
type Log = {
info: (...args: any[]) => void;
error: (...args: any[]) => void;
};
export declare function processEnv(loadedEnvFiles: LoadedEnvFiles, dir?: string, log?: Log, forceReload?: boolean, onReload?: (envFilePath: string) => void): Env[];
export declare function resetEnv(): void;
export declare function loadEnvConfig(dir: string, dev?: boolean, log?: Log, forceReload?: boolean, onReload?: (envFilePath: string) => void): {
combinedEnv: Env;
parsedEnv: Env | undefined;
loadedEnvFiles: LoadedEnvFiles;
};
export {};