(method: 'GET' | 'POST' | 'DELETE', route: string, parameters?: object)
| 56 | |
| 57 | export interface CloudConvertClient { |
| 58 | call(method: 'GET' | 'POST' | 'DELETE', route: string, parameters?: object): Promise<unknown>; |
| 59 | jobs: { |
| 60 | create(data: JobTemplate): Promise<Job>; |
| 61 | get(id: string): Promise<Job>; |
no outgoing calls
no test coverage detected