import { AxiosResponse } from "axios"; export interface AxiosReturnTypes extends AxiosResponse { code: string; data: any; result: any; message: string; requestId: string; timestamp: number; uri: string; totalCount: number; [keys: string]: any; }