mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 08:43:57 +00:00
fix: removing all indices from flexsearch index
This commit is contained in:
@@ -87,7 +87,7 @@ export interface CatalogueEntry {
|
||||
}
|
||||
|
||||
/* Used by the library */
|
||||
export interface Game extends Omit<CatalogueEntry, "cover"> {
|
||||
export interface Game {
|
||||
id: number;
|
||||
title: string;
|
||||
iconUrl: string;
|
||||
@@ -102,17 +102,21 @@ export interface Game extends Omit<CatalogueEntry, "cover"> {
|
||||
executablePath: string | null;
|
||||
lastTimePlayed: Date | null;
|
||||
fileSize: number;
|
||||
objectID: string;
|
||||
shop: GameShop;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
||||
|
||||
export type LibraryGame = Omit<Game, "repacks">;
|
||||
|
||||
export interface DownloadProgress {
|
||||
downloadSpeed: number;
|
||||
timeRemaining: number;
|
||||
numPeers: number;
|
||||
numSeeds: number;
|
||||
isDownloadingMetadata: boolean;
|
||||
game: Omit<Game, "repacks">;
|
||||
game: LibraryGame;
|
||||
}
|
||||
|
||||
export interface UserPreferences {
|
||||
|
||||
Reference in New Issue
Block a user