feat: 添加用户设置页面及相关功能,更新用户头像组件

This commit is contained in:
2025-12-14 23:20:44 +07:00
parent 3c1b2d7d0f
commit ae0cc18551
9 changed files with 229 additions and 7 deletions

View File

@@ -15,3 +15,7 @@ export type WithdrawBody = Omit<Parameters<typeof client.api.asset.withdraw.post
assetCode: AssetCodeEnum;
withdrawMethod: WithdrawMethodEnum;
};
export type UserProfileData = Treaty.Data<typeof client.api.user.profile.get>;
export type UpdateUserProfileBody = Parameters<typeof client.api.user.profile.put>[0];