mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
13 lines
493 B
TypeScript
13 lines
493 B
TypeScript
import { GetEnvVarOptions } from './types';
|
|
export declare function getEnvVars(options?: GetEnvVarOptions): Promise<Record<string, any>>;
|
|
export declare function getEnvFile({ filePath, fallback, verbose }: {
|
|
filePath?: string;
|
|
fallback?: boolean;
|
|
verbose?: boolean;
|
|
}): Promise<Record<string, any>>;
|
|
export declare function getRCFile({ environments, filePath, verbose }: {
|
|
environments: string[];
|
|
filePath?: string;
|
|
verbose?: boolean;
|
|
}): Promise<Record<string, any>>;
|