UNPKG

env-cmd

Version:

Executes a command using the environment variables in an env file

10 lines (9 loc) 226 B
/** * Gets the env vars from the rc file and rc environments */ export declare function getRCFileVars({ environments, filePath }: { environments: string[]; filePath: string; }): Promise<{ [key: string]: any; }>;