UNPKG

392 BTypeScriptView Raw
1import { Compiler, MinifyPluginOptions } from './interfaces';
2import webpack = require('webpack');
3declare class ESBuildMinifyPlugin {
4 private readonly options;
5 constructor(options?: MinifyPluginOptions);
6 apply(compiler: Compiler): void;
7 transformAssets(compilation: webpack.compilation.Compilation, assetNames: string[]): Promise<void>;
8}
9export default ESBuildMinifyPlugin;