NET-Web-API-w-Angular/my-app/node_modules/license-webpack-plugin/dist/Logger.d.ts

11 lines
383 B
TypeScript
Raw Normal View History

2024-02-09 00:38:41 +00:00
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 };