refactor: 登录接口数据ts类型重命名

Former-commit-id: e035029e3b36cecbfc96c18a4617333aeb1f2c17
This commit is contained in:
haoxr
2023-02-04 23:56:37 +08:00
parent 8c5537c49e
commit 673f8e3fe4

View File

@@ -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响应类型