Interceptor type

type Interceptor = {
  error?: ErrorInterceptor
  options?: AxiosInterceptorOptions
  request?: RequestInterceptor
  response?: ResponseInterceptor
}