ship-gis/node_modules/fork-ts-checker-webpack-plugin/lib/logger/LoggerConfiguration.d.ts

11 lines
401 B
TypeScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
import LoggerOptions from './LoggerOptions';
import Logger from './Logger';
import webpack from 'webpack';
interface LoggerConfiguration {
infrastructure: Logger;
issues: Logger;
devServer: boolean;
}
declare function createLoggerConfiguration(compiler: webpack.Compiler, options: LoggerOptions | undefined): LoggerConfiguration;
export { LoggerConfiguration, createLoggerConfiguration };