From 673f8e3fe41bc55d62e7b029bd6764af7e64acba Mon Sep 17 00:00:00 2001 From: haoxr <1490493387@qq.com> Date: Sat, 4 Feb 2023 23:56:37 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E7=99=BB=E5=BD=95=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E6=95=B0=E6=8D=AEts=E7=B1=BB=E5=9E=8B=E9=87=8D?= =?UTF-8?q?=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: e035029e3b36cecbfc96c18a4617333aeb1f2c17 --- src/api/auth/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/auth/types.ts b/src/api/auth/types.ts index 74db3e7e..37c2b418 100644 --- a/src/api/auth/types.ts +++ b/src/api/auth/types.ts @@ -1,7 +1,7 @@ /** * 登录数据类型 */ -export interface LoginData { +export type LoginType = { username: string; password: string; /** @@ -12,7 +12,7 @@ export interface LoginData { * 验证码Code服务端缓存key(UUID) */ // verifyCodeKey: string; -} +}; /** * Token响应类型