Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

11 строки
331 B

  1. import type { Compiler } from 'webpack';
  2. declare class VirtualModulesPlugin {
  3. private _staticModules;
  4. private _compiler;
  5. private _watcher;
  6. constructor(modules?: Record<string, string>);
  7. writeModule(filePath: string, contents: string): void;
  8. apply(compiler: Compiler): void;
  9. }
  10. export = VirtualModulesPlugin;