tap-after-compile-to-add-dependencies.d.ts 394 B

12345
  1. import type webpack from 'webpack';
  2. import type { ForkTsCheckerWebpackPluginConfig } from '../plugin-config';
  3. import type { ForkTsCheckerWebpackPluginState } from '../plugin-state';
  4. declare function tapAfterCompileToAddDependencies(compiler: webpack.Compiler, config: ForkTsCheckerWebpackPluginConfig, state: ForkTsCheckerWebpackPluginState): void;
  5. export { tapAfterCompileToAddDependencies };