版博士V2.0程序
選択できるのは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;