ft_transcendence/pong/node_modules/fork-ts-checker-webpack-plugin/lib/infrastructure-logger.d.ts
2023-05-02 19:15:50 +02:00

10 lines
358 B
TypeScript

import type webpack from 'webpack';
export interface InfrastructureLogger {
log(...args: unknown[]): void;
debug(...args: unknown[]): void;
error(...args: unknown[]): void;
warn(...args: unknown[]): void;
info(...args: unknown[]): void;
}
export declare function getInfrastructureLogger(compiler: webpack.Compiler): InfrastructureLogger;