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.
 
 
 
 

10 lines
383 B

import { ConstructedStats } from './ConstructedStats';
import { WebpackCompilation } from './WebpackCompilation';
declare class Logger {
private stats;
private static LOG_PREFIX;
constructor(stats: ConstructedStats);
warn(compilation: WebpackCompilation, message: string): void;
error(compilation: WebpackCompilation, message: string): void;
}
export { Logger };