import axios from 'axios'; declare module 'axios' { interface AxiosResponse<T = any> { code: number; msg: string; rows: T; total: number; } }