UNPKG

368 BTypeScriptView Raw
1declare const cli: (argv?: string[]) => void;
2
3interface RunOptions {
4 config?: string;
5 output?: string;
6 cwd?: string;
7 color?: boolean;
8 watch?: boolean;
9 ignoreFile?: string;
10 beautify?: boolean;
11}
12declare const run: (globs: string[], options?: RunOptions) => Promise<void>;
13
14export { RunOptions, cli, run };
15//# sourceMappingURL=cli.d.ts.map