| 1 | import { Method } from 'axios' |
| 2 | |
| 3 | export interface RequestConfig { |
| 4 | baseUrl?: string |
| 5 | path: string |
| 6 | data?: any |
| 7 | verb?: Method |
| 8 | headers?: { [key: string]: string } |
| 9 | } |
| 10 | |
| 11 | export interface GraphQLFormattedQuery { |
| 12 | query: string |
nothing calls this directly
no outgoing calls
no test coverage detected