| 3 | export type ParameterValues = Record<string, unknown>; |
| 4 | |
| 5 | export interface CliArguments { |
| 6 | apikey: string; |
| 7 | sandbox: boolean; |
| 8 | outputdir?: string; |
| 9 | overwrite: boolean; |
| 10 | parameter?: ParameterValues; |
| 11 | files?: string[]; |
| 12 | format?: string; |
| 13 | url?: string; |
| 14 | cloudconvert: CloudConvertClient; |
| 15 | } |
| 16 | |
| 17 | export interface TaskData extends ParameterValues { |
| 18 | operation: string; |
nothing calls this directly
no outgoing calls
no test coverage detected