UNPKG

nest-simple-config

Version:

A powerful and flexible configuration management library for NestJS applications. Supports JSON, YAML file loading, environment variable overrides, immutable configurations, and type-safe configuration access with dependency injection.

8 lines (7 loc) 341 B
import { EnvironmentOptions } from "../interfaces"; import { ConfigurationProvider } from "./config-provider.abstract"; export declare class EnvConfigurationProvider extends ConfigurationProvider { readonly options: EnvironmentOptions | undefined; constructor(options: EnvironmentOptions | undefined); loadConfigObject(): any; }