mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-07-16 21:14:05 +00:00
Custom views!
This commit is contained in:
6
frontend/wailsjs/go/app/App.d.ts
vendored
6
frontend/wailsjs/go/app/App.d.ts
vendored
@ -37,6 +37,8 @@ export function RemoveItemById(arg1:string,arg2:string,arg3:string,arg4:string):
|
||||
|
||||
export function RemoveItems(arg1:string,arg2:string,arg3:string,arg4:string,arg5:boolean):Promise<number>;
|
||||
|
||||
export function RemoveView(arg1:string):Promise<void>;
|
||||
|
||||
export function RenameCollection(arg1:string,arg2:string,arg3:string,arg4:string):Promise<boolean>;
|
||||
|
||||
export function Settings():Promise<app.Settings>;
|
||||
@ -48,3 +50,7 @@ export function UpdateHost(arg1:string,arg2:string):Promise<void>;
|
||||
export function UpdateItems(arg1:string,arg2:string,arg3:string,arg4:string):Promise<number>;
|
||||
|
||||
export function UpdateSettings(arg1:string):Promise<app.Settings>;
|
||||
|
||||
export function UpdateViewStore(arg1:string):Promise<void>;
|
||||
|
||||
export function Views():Promise<app.ViewStore>;
|
||||
|
@ -66,6 +66,10 @@ export function RemoveItems(arg1, arg2, arg3, arg4, arg5) {
|
||||
return window['go']['app']['App']['RemoveItems'](arg1, arg2, arg3, arg4, arg5);
|
||||
}
|
||||
|
||||
export function RemoveView(arg1) {
|
||||
return window['go']['app']['App']['RemoveView'](arg1);
|
||||
}
|
||||
|
||||
export function RenameCollection(arg1, arg2, arg3, arg4) {
|
||||
return window['go']['app']['App']['RenameCollection'](arg1, arg2, arg3, arg4);
|
||||
}
|
||||
@ -89,3 +93,11 @@ export function UpdateItems(arg1, arg2, arg3, arg4) {
|
||||
export function UpdateSettings(arg1) {
|
||||
return window['go']['app']['App']['UpdateSettings'](arg1);
|
||||
}
|
||||
|
||||
export function UpdateViewStore(arg1) {
|
||||
return window['go']['app']['App']['UpdateViewStore'](arg1);
|
||||
}
|
||||
|
||||
export function Views() {
|
||||
return window['go']['app']['App']['Views']();
|
||||
}
|
||||
|
Reference in New Issue
Block a user