mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
import type { Environment } from './types.ts';
|
|
/**
|
|
* Gets the env vars from the rc file and rc environments
|
|
*/
|
|
export declare function getRCFileVars({ environments, filePath }: {
|
|
environments: string[];
|
|
filePath: string;
|
|
}): Promise<Environment>;
|