index.d.ts 152 B

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