frontend/.pnpm-store/v3/files/11/a90ce075fcb05cc35bc38ca52601b7a05935219e02ad2b2c99834528f7600999cb62c272cd56547f05efe8cfe0c332a3096c3655ddc6c42bb46c832f2c4b69

13 lines
252 B
Plaintext

export type JwtUser = {
id: number;
uuid: string;
email?: string;
username?: string;
firstname: string;
middlename?: string;
lastname: string;
enabled: boolean;
refreshTokenCount: number;
profilePic?: string;
};