WIP: Implement frontend

This commit is contained in:
grimsi
2022-07-22 15:16:19 +02:00
parent a06dfa7c47
commit e11611bbe6
11 changed files with 88 additions and 48 deletions
+10
View File
@@ -0,0 +1,10 @@
import {Observable} from "rxjs";
import {DetectedGameDto} from "../models/dtos/DetectedGameDto";
import {GameOverviewDto} from "../models/dtos/GameOverviewDto";
import {HttpResponse} from "@angular/common/http";
export interface LibraryApi {
scanLibrary(): Observable<HttpResponse<Response>>;
downloadImages(): Observable<HttpResponse<Response>>;
getFiles(): Observable<string[]>;
}