UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

9 lines (8 loc) 349 B
import { Reader } from '../readers'; import { Configuration } from './configuration'; import { ConfigurationLoader } from './configuration.loader'; export declare class NestConfigurationLoader implements ConfigurationLoader { private readonly reader; constructor(reader: Reader); load(name?: string): Promise<Required<Configuration>>; }