Files
hotel-biz-h5/src/types/axios.d.ts

16 lines
312 B
TypeScript

import 'axios'
declare module 'axios' {
export interface AxiosRequestConfig<D = any> {
skipAuth?: boolean
skipAuthRefresh?: boolean
authRetry?: boolean
}
export interface InternalAxiosRequestConfig<D = any> {
skipAuth?: boolean
skipAuthRefresh?: boolean
authRetry?: boolean
}
}