UNPKG

383 BTypeScriptView Raw
1import { ConstructedStats } from './ConstructedStats';
2import { WebpackCompilation } from './WebpackCompilation';
3declare class Logger {
4 private stats;
5 private static LOG_PREFIX;
6 constructor(stats: ConstructedStats);
7 warn(compilation: WebpackCompilation, message: string): void;
8 error(compilation: WebpackCompilation, message: string): void;
9}
10export { Logger };