2017-03-20 17:29:41 +03:00
|
|
|
|
export interface CliOptionsInterface {
|
2017-03-20 17:51:38 +03:00
|
|
|
|
input: string[];
|
2017-03-20 17:29:41 +03:00
|
|
|
|
output: string[];
|
|
|
|
|
format: 'json' | 'namespaced-json' | 'pot';
|
|
|
|
|
replace: boolean;
|
|
|
|
|
sort: boolean;
|
|
|
|
|
clean: boolean;
|
|
|
|
|
help: boolean;
|
|
|
|
|
}
|