feat: new ui

This commit is contained in:
archer
2023-05-04 23:30:59 +08:00
parent 4d043e0e46
commit 014fb504a4
133 changed files with 2426 additions and 1696 deletions

4
src/types/user.d.ts vendored
View File

@@ -1,6 +1,7 @@
export interface UserType {
_id: string;
username: string;
avatar: string;
openaiKey: string;
balance: number;
promotion: {
@@ -10,7 +11,8 @@ export interface UserType {
export interface UserUpdateParams {
balance?: number;
openaiKey: string;
avatar?: string;
openaiKey?: string;
}
export interface UserBillType {