UNPKG

401 BTypeScriptView Raw
1import { LoggerService } from '@nestjs/common';
2export declare class WinstonLoggerService implements LoggerService {
3 private static instance;
4 private constructor();
5 static getInstance(): LoggerService;
6 error(message: any, trace?: string, context?: string): any;
7 log(message: any, context?: string): any;
8 warn(message: any, context?: string): any;
9 private processMessage;
10}