mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-22 18:33:56 +00:00
feat: adding hltb key extraction
This commit is contained in:
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";
|
||||
|
||||
Reference in New Issue
Block a user