1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-18 05:54:05 +00:00

Started work on remove feature

This commit is contained in:
2023-01-17 15:56:55 +01:00
parent 92ec231c48
commit 6d7f35775c
6 changed files with 115 additions and 8 deletions

View File

@ -21,3 +21,5 @@ export function OpenCollection(arg1:string,arg2:string,arg3:string):Promise<prim
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>;

View File

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