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

Find view: make changes to single documents from within the object editor

This commit is contained in:
2023-06-02 22:33:43 +02:00
parent 33d41064cc
commit 7eb7f97d21
8 changed files with 92 additions and 40 deletions

2
frontend/wailsjs/go/app/App.d.ts generated vendored
View File

@ -67,6 +67,8 @@ export function Startup(arg1:context.Context,arg2:ui.UI):Promise<void>;
export function TruncateCollection(arg1:string,arg2:string,arg3:string):Promise<boolean>;
export function UpdateFoundDocument(arg1:string,arg2:string,arg3:string,arg4:string,arg5:string):Promise<boolean>;
export function UpdateHost(arg1:string,arg2:string):Promise<boolean>;
export function UpdateItems(arg1:string,arg2:string,arg3:string,arg4:string):Promise<number>;

View File

@ -122,6 +122,10 @@ export function TruncateCollection(arg1, arg2, arg3) {
return window['go']['app']['App']['TruncateCollection'](arg1, arg2, arg3);
}
export function UpdateFoundDocument(arg1, arg2, arg3, arg4, arg5) {
return window['go']['app']['App']['UpdateFoundDocument'](arg1, arg2, arg3, arg4, arg5);
}
export function UpdateHost(arg1, arg2) {
return window['go']['app']['App']['UpdateHost'](arg1, arg2);
}