mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 07:46:21 +02:00
6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
import { IWebpackCLI } from "webpack-cli";
|
|
declare class InfoCommand {
|
|
apply(cli: IWebpackCLI): Promise<void>;
|
|
}
|
|
export default InfoCommand;
|