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) 306 B
/// <reference types="node" /> import { FileConfigurationProvider } from "./file-config-provider"; import * as fs from 'fs'; export declare class JsonConfigurationProvider extends FileConfigurationProvider { readonly filename: fs.PathLike; constructor(filename: fs.PathLike, optional?: boolean); }