feat: remove nullables

This commit is contained in:
Zamitto 2024-07-17 19:03:32 -03:00
parent 8c67dda84e
commit 929be48495
6 changed files with 13 additions and 13 deletions

View file

@ -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 {