10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
|
export interface CliOptionsInterface {
|
|||
|
dir: string[];
|
|||
|
output: string[];
|
|||
|
format: 'json' | 'namespaced-json' | 'pot';
|
|||
|
replace: boolean;
|
|||
|
sort: boolean;
|
|||
|
clean: boolean;
|
|||
|
help: boolean;
|
|||
|
}
|