export type TPlatformBackupTarget = 'volume' | 'database' | 'bucket'; export interface IPlatformBackupBindingConfig { targets: Array<{ type: TPlatformBackupTarget; name: string; }>; schedule: string; retentionDays?: number; }