Changeset 2b08bed for frontend/src/utils


Ignore:
Timestamp:
01/30/26 22:14:36 (5 months ago)
Author:
Dimitar Arsov <dimitararsov04@…>
Branches:
main
Children:
2730163
Parents:
98992cf
Message:

show followers, following and songs in album

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/utils/types.ts

    r98992cf r2b08bed  
    1919  genre: string;
    2020  type: string;
     21  releasedBy: string;
    2122}
    2223
     
    2728  creatorName: string;
    2829}
     30
     31export interface BaseNonAdminUser {
     32  id: number;
     33  fullName: string;
     34  userType: string;
     35  profilePhoto: string;
     36  followers: number;
     37  following: number;
     38  isFollowedByCurrentUser: boolean;
     39}
Note: See TracChangeset for help on using the changeset viewer.