arreglado lo de usuario que no se veia el nombre de usuario

This commit is contained in:
2025-11-27 17:30:52 -03:00
parent 17addc8fcf
commit 0b39cc6f28
5 changed files with 72 additions and 4 deletions

12
src/types.d.ts vendored
View File

@@ -74,3 +74,15 @@ export interface PostResponseDto {
visibility: string;
hashtags: string[]?;
}
export interface UserResponseDto {
id: string;
username: string;
displayName: string;
email: string;
bio: string;
profileImageUrl: string;
followersCount: number;
followingCount: number;
createdAt: string;
}