docs: moving readme

This commit is contained in:
Chubby Granny Chaser 2024-09-27 23:19:39 +01:00
commit 55a92fd68a
No known key found for this signature in database
64 changed files with 771 additions and 549 deletions

View file

@ -233,8 +233,8 @@ export interface DownloadSourceDownload {
export interface DownloadSourceValidationResult {
name: string;
downloads: DownloadSourceDownload[];
etag: string;
downloadCount: number;
}
export interface DownloadSource {

View file

@ -3,6 +3,10 @@ export interface LudusaviScanChange {
decision: "Processed" | "Cancelled" | "Ignore";
}
export interface LudusaviGame extends LudusaviScanChange {
files: Record<string, LudusaviScanChange>;
}
export interface LudusaviBackup {
overall: {
totalGames: number;
@ -15,7 +19,7 @@ export interface LudusaviBackup {
same: number;
};
};
games: Record<string, LudusaviScanChange>;
games: Record<string, LudusaviGame>;
}
export interface LudusaviFindResult {