feat: get trending games from api

This commit is contained in:
Zamitto 2024-09-12 20:39:49 -03:00
parent 87cacdf16c
commit 3199e56661
6 changed files with 66 additions and 48 deletions

View file

@ -339,3 +339,9 @@ export interface DownloadSource {
createdAt: Date;
updatedAt: Date;
}
export interface TrendingGame {
uri: string;
description: string;
background: string;
}