mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 16:53:57 +00:00
feat: creating friends section
This commit is contained in:
@@ -269,14 +269,25 @@ export interface UserDetails {
|
||||
profileImageUrl: string | null;
|
||||
}
|
||||
|
||||
export interface UserFriend {
|
||||
id: string;
|
||||
displayName: string;
|
||||
profileImageUrl: string | null;
|
||||
}
|
||||
|
||||
export interface PendingFriendRequest {
|
||||
AId: string;
|
||||
BId: string;
|
||||
}
|
||||
|
||||
export interface UserProfile {
|
||||
id: string;
|
||||
displayName: string;
|
||||
username: string;
|
||||
profileImageUrl: string | null;
|
||||
totalPlayTimeInSeconds: number;
|
||||
libraryGames: UserGame[];
|
||||
recentGames: UserGame[];
|
||||
libraryGames: UserGame[] | null;
|
||||
recentGames: UserGame[] | null;
|
||||
friends: UserFriend[] | null;
|
||||
}
|
||||
|
||||
export interface DownloadSource {
|
||||
|
||||
Reference in New Issue
Block a user