| 12 | import { VERSION } from "./version"; |
| 13 | |
| 14 | export interface HttpClient { |
| 15 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 16 | request(config: AxiosRequestConfig): Promise<AxiosResponse<any>>; |
| 17 | } |
| 18 | |
| 19 | export interface RunOptions { |
| 20 | cwd?: string; |
no outgoing calls
no test coverage detected