UNPKG

nestjs-dotenv

Version:
9 lines (8 loc) 283 B
import { configType, Enum } from './constants'; export declare class ConfigService { private envConfig; constructor(path?: string); get(key: string): string; getWithType<T>(key: string, type: configType, enumObject?: Enum<T>): any; reload(path?: string): void; }