( args: string[], consoleError: (msg: string) => void = console.error, )
| 17 | import * as api from './transformers/api'; |
| 18 | |
| 19 | export function mainXi18n( |
| 20 | args: string[], |
| 21 | consoleError: (msg: string) => void = console.error, |
| 22 | ): number { |
| 23 | const config = readXi18nCommandLineAndConfiguration(args); |
| 24 | return main(args, consoleError, config, undefined, undefined, undefined); |
| 25 | } |
| 26 | |
| 27 | function readXi18nCommandLineAndConfiguration(args: string[]): ParsedConfiguration { |
| 28 | const options: api.CompilerOptions = {}; |
no test coverage detected