From fc6285195785b935a6267f0140a63502061b8d0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=89=E9=80=9F=E8=9C=97=E7=89=9B?= <361946749@qq.com> Date: Mon, 21 Aug 2023 06:18:01 +0000 Subject: [PATCH] =?UTF-8?q?update=20types/axios.d.ts.=20=E6=A0=B9=E6=8D=AE?= =?UTF-8?q?=E4=B8=8A=E4=B8=8B=E6=96=87,Result=E8=BF=99=E9=87=8C=E5=BA=94?= =?UTF-8?q?=E8=AF=A5=E9=9C=80=E8=A6=81=E6=9C=89success=E5=B1=9E=E6=80=A7.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 光速蜗牛 <361946749@qq.com> --- types/axios.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/axios.d.ts b/types/axios.d.ts index b1206d8..acedf88 100644 --- a/types/axios.d.ts +++ b/types/axios.d.ts @@ -32,6 +32,7 @@ export interface Result { type: 'success' | 'error' | 'warning'; message: string; result: T; + success: boolean; } //文件上传参数 -- Gitee