Files
gameyfin/frontend/src/app/api/LibraryApi.ts
T
grimsi aa72161990 Finished implementation of frontend functionality.
Styling and bugfixing next
2022-07-25 21:17:30 +02:00

9 lines
262 B
TypeScript

import {Observable} from "rxjs";
import {HttpResponse} from "@angular/common/http";
export interface LibraryApi {
scanLibrary(): Observable<HttpResponse<Response>>;
downloadImages(): Observable<HttpResponse<Response>>;
getFiles(): Observable<string[]>;
}