added export
All checks were successful
build / windows (push) Successful in 5m34s
build / linux (push) Successful in 4m25s

This commit is contained in:
2025-03-08 11:47:54 +01:00
parent d62afd5673
commit aa5ea16e90
8 changed files with 93 additions and 21 deletions

View File

@ -12,6 +12,8 @@ export function DeleteClient(arg1:model.Client):Promise<void>;
export function DeleteLending(arg1:model.Lending):Promise<void>;
export function ExportLendings(arg1:number):Promise<void>;
export function GetAllLendings():Promise<Array<model.Lending>>;
export function GetAuthors():Promise<Array<model.Author>>;

View File

@ -22,6 +22,10 @@ export function DeleteLending(arg1) {
return window['go']['main']['App']['DeleteLending'](arg1);
}
export function ExportLendings(arg1) {
return window['go']['main']['App']['ExportLendings'](arg1);
}
export function GetAllLendings() {
return window['go']['main']['App']['GetAllLendings']();
}