mirror of
https://github.com/labring/FastGPT.git
synced 2026-03-24 01:08:06 +08:00
22 lines
300 B
TypeScript
22 lines
300 B
TypeScript
export enum UserNumberEnum {
|
|
phone = 'phone',
|
|
wx = 'wx'
|
|
}
|
|
|
|
export interface UserType {
|
|
_id: string;
|
|
email: string;
|
|
accounts: {
|
|
type: string;
|
|
value: string;
|
|
}[];
|
|
balance: number;
|
|
}
|
|
|
|
export interface UserUpdateParams {
|
|
accounts?: {
|
|
type: string;
|
|
value: string;
|
|
}[];
|
|
}
|