1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-16 13:04:06 +00:00

Update items (needs refinement)

This commit is contained in:
2023-01-18 11:22:02 +01:00
parent 1571eaa897
commit 1c12dcabc0
8 changed files with 281 additions and 7 deletions

View File

@ -25,3 +25,5 @@ export function OpenConnection(arg1:string):Promise<Array<string>>;
export function OpenDatabase(arg1:string,arg2:string):Promise<Array<string>>;
export function RemoveItems(arg1:string,arg2:string,arg3:string,arg4:string,arg5:boolean):Promise<number>;
export function UpdateItems(arg1:string,arg2:string,arg3:string,arg4:string):Promise<number>;

View File

@ -45,3 +45,7 @@ export function OpenDatabase(arg1, arg2) {
export function RemoveItems(arg1, arg2, arg3, arg4, arg5) {
return window['go']['app']['App']['RemoveItems'](arg1, arg2, arg3, arg4, arg5);
}
export function UpdateItems(arg1, arg2, arg3, arg4) {
return window['go']['app']['App']['UpdateItems'](arg1, arg2, arg3, arg4);
}