env-cmd/dist/parse-rc-file.d.ts
2019-11-15 12:40:37 -06:00

10 lines
226 B
TypeScript

/**
* 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;
}>;