Files
Tiber365/node_modules/astro/dist/env/env-loader.d.ts
2025-07-24 18:46:24 +02:00

7 lines
314 B
TypeScript

import type { AstroConfig } from '../types/public/index.js';
export declare const createEnvLoader: (mode: string, config: AstroConfig, useRawValues: boolean) => {
get: () => Record<string, string>;
getPrivateEnv: () => Record<string, string>;
};
export type EnvLoader = ReturnType<typeof createEnvLoader>;