7 lines
314 B
TypeScript
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>;
|