|
- import { Factory, FactoryOutput } from './types.js';
- import * as webpack from 'webpack';
- import { Compiler } from 'webpack';
- import 'unplugin';
- import 'rollup';
- import 'vite';
- import 'esbuild';
-
- declare const getWebpackPlugin: <UserOptions>(factory: Factory<UserOptions>) => FactoryOutput<UserOptions, ((this: Compiler, compiler: Compiler) => void) | webpack.WebpackPluginInstance>;
-
- export { getWebpackPlugin };
|