版博士V2.0程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. import { Factory, FactoryOutput } from './types.js';
  2. import * as webpack from 'webpack';
  3. import { Compiler } from 'webpack';
  4. import 'unplugin';
  5. import 'rollup';
  6. import 'vite';
  7. import 'esbuild';
  8. declare const getWebpackPlugin: <UserOptions>(factory: Factory<UserOptions>) => FactoryOutput<UserOptions, ((this: Compiler, compiler: Compiler) => void) | webpack.WebpackPluginInstance>;
  9. export { getWebpackPlugin };