| 4 | import { fetchOperations as fetchCloudConvertOperations } from '../operations.js'; |
| 5 | |
| 6 | interface ParametersArguments extends CliArguments { |
| 7 | operation: string; |
| 8 | inputFormat?: string; |
| 9 | outputFormat?: string; |
| 10 | engine?: string; |
| 11 | engineVersion?: string; |
| 12 | alternatives?: boolean; |
| 13 | json?: boolean; |
| 14 | } |
| 15 | |
| 16 | export function createParametersCommand(): CommandModule<object, object> { |
| 17 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected