pluginWebpack5.d.ts 193 B

123456
  1. import type { Compiler, Plugin } from 'webpack';
  2. declare class VueLoaderPlugin implements Plugin {
  3. static NS: string;
  4. apply(compiler: Compiler): void;
  5. }
  6. export default VueLoaderPlugin;