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

Improvememts to export tool and logging

This commit is contained in:
2023-05-28 21:54:40 +02:00
parent a5eadbf456
commit 82d880dbff
9 changed files with 283 additions and 62 deletions

2
frontend/wailsjs/go/ui/UI.d.ts generated vendored
View File

@ -6,7 +6,7 @@ export function Beep():Promise<void>;
export function EnterText(arg1:string,arg2:string,arg3:string):Promise<string>;
export function OpenDirectory(arg1:string,arg2:string):Promise<string>;
export function OpenDirectory(arg1:string):Promise<string>;
export function Reveal(arg1:string):Promise<void>;

View File

@ -10,8 +10,8 @@ export function EnterText(arg1, arg2, arg3) {
return window['go']['ui']['UI']['EnterText'](arg1, arg2, arg3);
}
export function OpenDirectory(arg1, arg2) {
return window['go']['ui']['UI']['OpenDirectory'](arg1, arg2);
export function OpenDirectory(arg1) {
return window['go']['ui']['UI']['OpenDirectory'](arg1);
}
export function Reveal(arg1) {