版博士V2.0程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

index.d.ts 331 B

12345678910
  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;