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

Zenity dialogs

This commit is contained in:
2023-02-20 21:04:01 +01:00
parent bab7f44ec3
commit bd18b54842
20 changed files with 176 additions and 429 deletions

View File

@ -19,6 +19,8 @@ export function DropDatabase(arg1:string,arg2:string):Promise<boolean>;
export function DropIndex(arg1:string,arg2:string,arg3:string,arg4:string):Promise<boolean>;
export function EnterText(arg1:string,arg2:string):Promise<string>;
export function Environment():Promise<app.EnvironmentInfo>;
export function FindItems(arg1:string,arg2:string,arg3:string,arg4:string):Promise<app.QueryResult>;

View File

@ -30,6 +30,10 @@ export function DropIndex(arg1, arg2, arg3, arg4) {
return window['go']['app']['App']['DropIndex'](arg1, arg2, arg3, arg4);
}
export function EnterText(arg1, arg2) {
return window['go']['app']['App']['EnterText'](arg1, arg2);
}
export function Environment() {
return window['go']['app']['App']['Environment']();
}