env-cmd/dist/parse-rc-file.d.ts

8 lines
218 B
TypeScript

/**
* Gets the env vars from the rc file and rc environments
*/
export declare function getRCFileVars({ environments, filePath }: {
environments: string[];
filePath: string;
}): Promise<Record<string, any>>;