You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
763 B

export type Env = {
[key: string]: string | undefined;
};
export type LoadedEnvFiles = Array<{
path: string;
contents: string;
}>;
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;
loadedEnvFiles: LoadedEnvFiles;
};
export {};