mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-09-16 05:12:52 +00:00
Moved UI methods to their own struct
This commit is contained in:
13
frontend/wailsjs/go/ui/UI.d.ts
vendored
Executable file
13
frontend/wailsjs/go/ui/UI.d.ts
vendored
Executable file
@ -0,0 +1,13 @@
|
||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||
// This file is automatically generated. DO NOT EDIT
|
||||
import {context} from '../models';
|
||||
|
||||
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 Reveal(arg1:string):Promise<void>;
|
||||
|
||||
export function Startup(arg1:context.Context):Promise<void>;
|
23
frontend/wailsjs/go/ui/UI.js
Executable file
23
frontend/wailsjs/go/ui/UI.js
Executable file
@ -0,0 +1,23 @@
|
||||
// @ts-check
|
||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||
// This file is automatically generated. DO NOT EDIT
|
||||
|
||||
export function Beep() {
|
||||
return window['go']['ui']['UI']['Beep']();
|
||||
}
|
||||
|
||||
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 Reveal(arg1) {
|
||||
return window['go']['ui']['UI']['Reveal'](arg1);
|
||||
}
|
||||
|
||||
export function Startup(arg1) {
|
||||
return window['go']['ui']['UI']['Startup'](arg1);
|
||||
}
|
Reference in New Issue
Block a user