mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-13 15:10:43 -03:00
creada store de usuario
This commit is contained in:
13
src/types.d.ts
vendored
13
src/types.d.ts
vendored
@@ -12,3 +12,16 @@ export interface Post {
|
||||
visibility: string;
|
||||
hashtags?: string[];
|
||||
}
|
||||
export interface User {
|
||||
_id: string;
|
||||
displayName: string;
|
||||
username: string;
|
||||
email: string;
|
||||
passwordHash: string;
|
||||
bio?: string;
|
||||
profileImageUrl?: string;
|
||||
createdAt: Date;
|
||||
followersCount: number;
|
||||
followingCount: number;
|
||||
refreshTokens: RefreshToken[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user