6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
import { type IWebpackCLI } from "webpack-cli";
|
|
declare class ConfigTestCommand {
|
|
apply(cli: IWebpackCLI): Promise<void>;
|
|
}
|
|
export default ConfigTestCommand;
|