st-common-req
Version:
Small Tail 前端通用请求库
12 lines (11 loc) • 350 B
TypeScript
import * as axios from "axios";
/**
* axios 命名空间
*/
declare namespace AxiosNamespace {
type AxiosInstance = axios.AxiosInstance;
type AxiosRequestConfig = axios.AxiosRequestConfig;
type AxiosResponse = axios.AxiosResponse;
type InternalAxiosRequestConfig = axios.InternalAxiosRequestConfig;
}
export default AxiosNamespace;