mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: adding hltb key extraction
This commit is contained in:
parent
0222121288
commit
baafc6c7d1
22 changed files with 791 additions and 205 deletions
14
src/types/howlongtobeat.types.ts
Normal file
14
src/types/howlongtobeat.types.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
export interface HowLongToBeatCategory {
|
||||
title: string;
|
||||
duration: string;
|
||||
accuracy: string;
|
||||
}
|
||||
|
||||
export interface HowLongToBeatResult {
|
||||
game_id: number;
|
||||
game_name: string;
|
||||
}
|
||||
|
||||
export interface HowLongToBeatSearchResponse {
|
||||
data: HowLongToBeatResult[];
|
||||
}
|
|
@ -130,12 +130,6 @@ export interface UserPreferences {
|
|||
runAtStartup: boolean;
|
||||
}
|
||||
|
||||
export interface HowLongToBeatCategory {
|
||||
title: string;
|
||||
duration: string;
|
||||
accuracy: string;
|
||||
}
|
||||
|
||||
export interface Steam250Game {
|
||||
title: string;
|
||||
objectId: string;
|
||||
|
@ -304,3 +298,4 @@ export interface GameArtifact {
|
|||
export * from "./steam.types";
|
||||
export * from "./real-debrid.types";
|
||||
export * from "./ludusavi.types";
|
||||
export * from "./howlongtobeat.types";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue