mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-23 10:51:02 +00:00
15 lines
263 B
TypeScript
15 lines
263 B
TypeScript
export interface HowLongToBeatCategory {
|
|
title: string;
|
|
duration: string;
|
|
accuracy: string;
|
|
}
|
|
|
|
export interface HowLongToBeatResult {
|
|
game_id: number;
|
|
game_name: string;
|
|
}
|
|
|
|
export interface HowLongToBeatSearchResponse {
|
|
data: HowLongToBeatResult[];
|
|
}
|