1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
| declare module '@/utils/request' {
| export const request: IRequest;
| export interface ResponseStructure<TData = any> {
| success: boolean;
| data: TData;
| /**
| * http状态吗
| */
| code?: number;
| /**
| * 错误码
| */
| errorCode?: string;
| /**
| * 错误信息
| */
| msg?: string;
| showType?: ErrorShowType;
| traceId?: string;
| }
| }
|
|