UNPKG

418 BTypeScriptView Raw
1export interface ICreateTsIndexCliOption {
2 cwds: Array<string> | string;
3 output: string;
4 filefirst: boolean;
5 addnewline: boolean;
6 usesemicolon: boolean;
7 includecwd: boolean;
8 usetimestamp: boolean;
9 excludes: Array<string>;
10 fileexcludes: Array<string>;
11 targetexts: Array<string>;
12 verbose: boolean;
13 quote: string;
14 withoutcomment: boolean;
15 withoutbackup: boolean;
16}