plugin.d.ts 149 B

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