vils
Version:
Recursively outputs file paths and contents in various formats
21 lines (19 loc) • 398 B
text/typescript
export interface CLIArgs {
_: (string | number)[];
log: boolean;
file?: string;
config?: string;
ignore: string[];
format: string;
y: boolean;
info: boolean;
source?: string;
}
export interface Config {
source: string;
log?: boolean;
file?: string;
ignore?: (string | RegExp)[];
format?: string;
confirm?: boolean;
}