File size: 345 Bytes
cfbbc1a
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ConsoleLogger } from '@nestjs/common';
/**
 * @publicApi
 */
export declare class TestingLogger extends ConsoleLogger {
    constructor();
    log(message: string): void;
    warn(message: string): void;
    debug(message: string): void;
    verbose(message: string): void;
    error(message: string, ...optionalParams: any[]): void;
}