mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-07-16 05:04:04 +00:00
Beep
This commit is contained in:
2
frontend/wailsjs/go/app/App.d.ts
vendored
2
frontend/wailsjs/go/app/App.d.ts
vendored
@ -9,6 +9,8 @@ export function AddHost(arg1:string):Promise<void>;
|
||||
|
||||
export function Aggregate(arg1:string,arg2:string,arg3:string,arg4:string,arg5:string):Promise<void>;
|
||||
|
||||
export function Beep():Promise<void>;
|
||||
|
||||
export function CreateIndex(arg1:string,arg2:string,arg3:string,arg4:string):Promise<string>;
|
||||
|
||||
export function DropCollection(arg1:string,arg2:string,arg3:string):Promise<boolean>;
|
||||
|
@ -10,6 +10,10 @@ export function Aggregate(arg1, arg2, arg3, arg4, arg5) {
|
||||
return window['go']['app']['App']['Aggregate'](arg1, arg2, arg3, arg4, arg5);
|
||||
}
|
||||
|
||||
export function Beep() {
|
||||
return window['go']['app']['App']['Beep']();
|
||||
}
|
||||
|
||||
export function CreateIndex(arg1, arg2, arg3, arg4) {
|
||||
return window['go']['app']['App']['CreateIndex'](arg1, arg2, arg3, arg4);
|
||||
}
|
||||
|
Reference in New Issue
Block a user