first commit
This commit is contained in:
17
frontend/wailsjs/go/controller/Storage.d.ts
vendored
Normal file
17
frontend/wailsjs/go/controller/Storage.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||
// This file is automatically generated. DO NOT EDIT
|
||||
import {controller} from '../models';
|
||||
|
||||
export function GetConfig():Promise<controller.ServerConfig>;
|
||||
|
||||
export function Quit():Promise<void>;
|
||||
|
||||
export function SetUpyunConfig(arg1:controller.UpyunConfig):Promise<void>;
|
||||
|
||||
export function UperCreateDirectory(arg1:string):Promise<void>;
|
||||
|
||||
export function UperDelete(arg1:string,arg2:boolean):Promise<void>;
|
||||
|
||||
export function UperList(arg1:string):Promise<Array<controller.FileInfo>>;
|
||||
|
||||
export function UperUpload(arg1:string):Promise<void>;
|
||||
31
frontend/wailsjs/go/controller/Storage.js
Normal file
31
frontend/wailsjs/go/controller/Storage.js
Normal file
@@ -0,0 +1,31 @@
|
||||
// @ts-check
|
||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||
// This file is automatically generated. DO NOT EDIT
|
||||
|
||||
export function GetConfig() {
|
||||
return window['go']['controller']['Storage']['GetConfig']();
|
||||
}
|
||||
|
||||
export function Quit() {
|
||||
return window['go']['controller']['Storage']['Quit']();
|
||||
}
|
||||
|
||||
export function SetUpyunConfig(arg1) {
|
||||
return window['go']['controller']['Storage']['SetUpyunConfig'](arg1);
|
||||
}
|
||||
|
||||
export function UperCreateDirectory(arg1) {
|
||||
return window['go']['controller']['Storage']['UperCreateDirectory'](arg1);
|
||||
}
|
||||
|
||||
export function UperDelete(arg1, arg2) {
|
||||
return window['go']['controller']['Storage']['UperDelete'](arg1, arg2);
|
||||
}
|
||||
|
||||
export function UperList(arg1) {
|
||||
return window['go']['controller']['Storage']['UperList'](arg1);
|
||||
}
|
||||
|
||||
export function UperUpload(arg1) {
|
||||
return window['go']['controller']['Storage']['UperUpload'](arg1);
|
||||
}
|
||||
Reference in New Issue
Block a user