index.d.ts 145 B

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