added ability to update simkl episode count
This commit is contained in:
2
frontend/wailsjs/go/main/App.d.ts
vendored
2
frontend/wailsjs/go/main/App.d.ts
vendored
@ -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>;
|
||||
|
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user