UNPKG

285 BTypeScriptView Raw
1import { LoggerService, LogLevel } from '../services/logger.service';
2/**
3 * @publicApi
4 */
5export declare class NestApplicationContextOptions {
6 /**
7 * Specifies the logger to use. Pass `false` to turn off logging.
8 */
9 logger?: LoggerService | LogLevel[] | boolean;
10}