feat: adding hltb key extraction

This commit is contained in:
Chubby Granny Chaser 2024-10-07 20:56:53 +01:00
parent 0222121288
commit baafc6c7d1
No known key found for this signature in database
22 changed files with 791 additions and 205 deletions

View 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[];
}

View file

@ -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";