declare interface FormattedAxiosRequest {
  call: string
  headers?: { [key: string]: string|number }
  params: { [key: string]: string }
  data: {
    query: string,
    variables?: string
  }
}

declare interface FormattedAxiosResponse extends FormattedAxiosRequest {
  status: string
  statusText: string
  message: string
  errors: string[]
  textResponse?: string
}
