import type { albumTracksType } from './album'; export interface profileTypeMinimal { USER_ID: string; FIRSTNAME: string; LASTNAME: string; BLOG_NAME: string; USER_PICTURE?: string; IS_FOLLOW: boolean; __TYPE__: 'user'; } export interface profileType { IS_FOLLOW: boolean; NB_ARTISTS: number; NB_FOLLOWERS: number; NB_FOLLOWINGS: number; NB_MP3S: number; TOP_TRACK: albumTracksType; USER: { USER_ID: string; BLOG_NAME: string; SEX?: string; COUNTRY: string; USER_PICTURE?: string; COUNTRY_NAME: string; PRIVATE: boolean; DISPLAY_NAME: string; __TYPE__: 'user'; }; }