You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
345 B

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;
}