added ability to update simkl episode count

This commit is contained in:
2024-08-11 12:20:26 -04:00
parent aaf0f421f2
commit 8a6b3bd2b7
8 changed files with 190 additions and 45 deletions

View File

@ -23,3 +23,5 @@ export function GetSimklLoggedInUser():Promise<main.SimklUser>;
export function SimklGetUserWatchlist():Promise<main.SimklWatchList>;
export function SimklLogin():Promise<void>;
export function SimklSyncEpisodes(arg1:main.Anime,arg2:number):Promise<any>;

View File

@ -45,3 +45,7 @@ export function SimklGetUserWatchlist() {
export function SimklLogin() {
return window['go']['main']['App']['SimklLogin']();
}
export function SimklSyncEpisodes(arg1, arg2) {
return window['go']['main']['App']['SimklSyncEpisodes'](arg1, arg2);
}