added ability to change simkl rating

This commit is contained in:
2024-08-11 18:32:44 -04:00
parent b11395a617
commit a6b26171d4
5 changed files with 81 additions and 7 deletions

View File

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

View File

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