mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: update achievements on sidebar
This commit is contained in:
parent
446b03eeff
commit
ffac677e3f
9 changed files with 143 additions and 57 deletions
|
@ -28,6 +28,15 @@ export interface GameRepack {
|
|||
updatedAt: Date;
|
||||
}
|
||||
|
||||
export interface AchievementData {
|
||||
name: string;
|
||||
displayName: string;
|
||||
description?: string;
|
||||
icon: string;
|
||||
icongray: string;
|
||||
hidden: boolean;
|
||||
}
|
||||
|
||||
export interface GameAchievement {
|
||||
name: string;
|
||||
displayName: string;
|
||||
|
@ -36,6 +45,7 @@ export interface GameAchievement {
|
|||
unlockTime: number | null;
|
||||
icon: string;
|
||||
icongray: string;
|
||||
hidden: boolean;
|
||||
}
|
||||
|
||||
export type ShopDetails = SteamAppDetails & {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue