Optimize Sign

This commit is contained in:
2024-01-02 16:46:11 +08:00
parent 837ea40bf1
commit edf5f08828
4 changed files with 143 additions and 47 deletions

3
src/global.d.ts vendored
View File

@@ -62,6 +62,7 @@ interface RegisterParam {
username: string
email: string
password: string
captchaCode: string
}
interface VerifyParam {
@@ -72,11 +73,13 @@ interface VerifyParam {
interface ForgetParam {
email: string
captchaCode: string
}
interface RetrieveParam {
code: string
password: string
captchaCode: string
}
interface LoginParam {