UNPKG

353 BTypeScriptView Raw
1export declare const name = "delete";
2export declare const alias = "del";
3export declare const description = "Deletes transient files across projects (eg. logs, node_modules etc).";
4export declare const args: {
5 '-i': string;
6};
7export declare function cmd(args?: {
8 params: string[];
9 options: {
10 i?: boolean;
11 };
12}): Promise<void>;