mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-07-17 21:44:05 +00:00
Improvememts to export tool and logging
This commit is contained in:
2
frontend/wailsjs/go/models.ts
generated
2
frontend/wailsjs/go/models.ts
generated
@ -9,6 +9,7 @@ export namespace app {
|
||||
homeDirectory: string;
|
||||
dataDirectory: string;
|
||||
logDirectory: string;
|
||||
downloadDirectory: string;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new EnvironmentInfo(source);
|
||||
@ -24,6 +25,7 @@ export namespace app {
|
||||
this.homeDirectory = source["homeDirectory"];
|
||||
this.dataDirectory = source["dataDirectory"];
|
||||
this.logDirectory = source["logDirectory"];
|
||||
this.downloadDirectory = source["downloadDirectory"];
|
||||
}
|
||||
}
|
||||
export class QueryResult {
|
||||
|
2
frontend/wailsjs/go/ui/UI.d.ts
generated
vendored
2
frontend/wailsjs/go/ui/UI.d.ts
generated
vendored
@ -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>;
|
||||
|
||||
|
4
frontend/wailsjs/go/ui/UI.js
generated
4
frontend/wailsjs/go/ui/UI.js
generated
@ -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) {
|
||||
|
Reference in New Issue
Block a user