mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 00:33:59 +00:00
24 lines
470 B
TypeScript
24 lines
470 B
TypeScript
export type GameShop = "steam" | "custom";
|
|
|
|
export type ShortcutLocation = "desktop" | "start_menu";
|
|
|
|
export interface UnlockedAchievement {
|
|
name: string;
|
|
unlockTime: number;
|
|
}
|
|
|
|
export interface SteamAchievement {
|
|
name: string;
|
|
displayName: string;
|
|
description?: string;
|
|
icon: string;
|
|
icongray: string;
|
|
hidden: boolean;
|
|
points?: number;
|
|
}
|
|
|
|
export interface UserAchievement extends SteamAchievement {
|
|
unlocked: boolean;
|
|
unlockTime: number | null;
|
|
}
|