This commit is contained in:
Sun
2023-11-08 21:53:07 +08:00
commit 211c3071dc
245 changed files with 39293 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
declare namespace HomePage{
interface State{
active:string
spaceId:number // 空间的id
notesList:Info[]
}
}
declare namespace HomePage.quest{
interface LoginReqest{
username:string
password:string
vcode?:string
}
interface LoginResponse extends User.Info{
token :string
}
interface ResetPasswordByVCodeReqest extends System.Register.SendRegisterVcodeRquest{
}
}