1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 09:19:16 +08:00

35 lines
759 B
Go
Raw Normal View History

export namespace Backup {
export interface BackupInfo {
id: number;
type: string;
bucket: string;
vars: string;
varsJson: object;
}
export interface BackupOperate {
id: number;
type: string;
bucket: string;
credential: string;
vars: string;
}
2022-10-28 11:02:47 +08:00
export interface RecordDownload {
source: string;
fileDir: string;
fileName: string;
}
export interface RecordInfo {
id: number;
createdAt: Date;
source: string;
2022-10-31 17:26:15 +08:00
backupType: string;
fileDir: string;
fileName: string;
}
export interface ForBucket {
type: string;
credential: string;
vars: string;
}
}