UNPKG

392 BTypeScriptView Raw
1export interface CommandParameterObject {
2 cwd?: string;
3 quiet?: boolean;
4 output?: string;
5 force?: boolean;
6 strip?: boolean;
7 minify?: boolean;
8 bundle?: boolean;
9 babel?: boolean;
10 hashFilename?: number | boolean;
11 omitEmptyJs?: boolean;
12}
13export declare function cli(param: CommandParameterObject): void;
14export declare function run(argv: string[]): void;