mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: creating friends section
This commit is contained in:
parent
202f5b60de
commit
6ccbff0160
9 changed files with 307 additions and 52 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue