Here is the code
const fetcher = Axios.create()
fetcher.interceptors.response.use(config=>{
return config.data
})
Problem is
Type of fetcher.get('...') is AxiosInstance, but it's actually AxiosInstance.data type
So how could I change the type correctly?