Merge branch 'master' of https://github.com/Tzahi12345/YoutubeDL-Material into angular-17

This commit is contained in:
Tzahi12345
2023-12-06 20:46:14 -05:00
19 changed files with 9156 additions and 73 deletions

View File

@@ -460,7 +460,7 @@ export class PostsService {
return this.http.post<SuccessObject>(this.path + 'deleteArchiveItems', body, this.httpOptions);
}
getFileFormats(url) {
getFileFormats(url: string) {
const body: GetFileFormatsRequest = {url: url};
return this.http.post<GetFileFormatsResponse>(this.path + 'getFileFormats', body, this.httpOptions);
}