UNPKG

nestjs-logger-configurable

Version:
12 lines (11 loc) 307 B
import { DynamicModule } from '@nestjs/common'; export interface LoggerOptions { isGlobal?: boolean; reqLogKey: string; infoLogKey: string; logConfigKey?: string; checkInterval?: number; } export declare class LoggerModule { static register(options: LoggerOptions): DynamicModule; }