Files
interfaces/ts/platform/backup.ts
T

11 lines
243 B
TypeScript
Raw Normal View History

2026-04-28 11:17:07 +00:00
export type TPlatformBackupTarget = 'volume' | 'database' | 'bucket';
export interface IPlatformBackupBindingConfig {
targets: Array<{
type: TPlatformBackupTarget;
name: string;
}>;
schedule: string;
retentionDays?: number;
}