create-ts-index
Version:
Automatic create index.ts file
19 lines (18 loc) • 503 B
TypeScript
import * as glob from 'glob';
export interface ICreateTsIndexOption {
__for_debug_from?: string;
fileFirst: boolean;
addNewline: boolean;
useSemicolon: boolean;
useTimestamp: boolean;
includeCWD: boolean;
withoutComment: boolean;
excludes: Array<string>;
fileExcludePatterns: Array<string>;
targetExts: Array<string>;
globOptions: glob.IOptions;
quote: string;
verbose: boolean;
withoutBackupFile: boolean;
output: string;
}