| 27 | } |
| 28 | |
| 29 | export interface ConvertResult { |
| 30 | success: boolean |
| 31 | inputPath: string |
| 32 | outputPath: string |
| 33 | inputFormat: string |
| 34 | outputFormat: string |
| 35 | outputIsDirectory: boolean |
| 36 | } |
| 37 | |
| 38 | export function createConvertAction(_program: Command): (inputPath: string, options: ConvertOptions) => Promise<void> { |
| 39 | return async (inputPath, options) => { |
nothing calls this directly
no outgoing calls
no test coverage detected