Files
Message-Push-Nest/web/src/api/api.d.ts
T

11 lines
283 B
TypeScript

import { AxiosInstance, AxiosResponse } from 'axios';
export interface ApiResponse<T = any> {
code: number;
msg: string;
data: T;
}
export declare const request: AxiosInstance;
export declare function handleException(error: any): void;
export declare function logout(): void;