env-cmd/dist/get-env-vars.d.ts
Todd Bluhm bbc4b78ad2
Convert over to using ts-standard
- Removed all the various eslint dependencies and added ts-standard
- Updated Readme file with some minor changes
- Updated dist folder to have one level again
2019-08-29 23:39:32 -05:00

17 lines
453 B
TypeScript

import { GetEnvVarOptions } from './types';
export declare function getEnvVars(options?: GetEnvVarOptions): Promise<{
[key: string]: any;
}>;
export declare function getEnvFile({ filePath, fallback }: {
filePath?: string;
fallback?: boolean;
}): Promise<{
[key: string]: any;
}>;
export declare function getRCFile({ environments, filePath }: {
environments: string[];
filePath?: string;
}): Promise<{
[key: string]: any;
}>;