mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: remove nullables
This commit is contained in:
parent
8c67dda84e
commit
929be48495
6 changed files with 13 additions and 13 deletions
|
@ -289,9 +289,9 @@ export interface UserProfile {
|
|||
displayName: string;
|
||||
profileImageUrl: string | null;
|
||||
totalPlayTimeInSeconds: number;
|
||||
libraryGames: UserGame[] | null;
|
||||
recentGames: UserGame[] | null;
|
||||
friends: UserFriend[] | null;
|
||||
libraryGames: UserGame[];
|
||||
recentGames: UserGame[];
|
||||
friends: UserFriend[];
|
||||
}
|
||||
|
||||
export interface DownloadSource {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue