index.d.ts 162 B

12345
  1. import { type IWebpackCLI } from "webpack-cli";
  2. declare class ConfigTestCommand {
  3. apply(cli: IWebpackCLI): Promise<void>;
  4. }
  5. export default ConfigTestCommand;