mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import Backup from 'typings/Backup';
|
|
import AppSectionState, { Error } from './AppSectionState';
|
|
|
|
interface BackupAppState extends AppSectionState<Backup> {
|
|
isRestoring: boolean;
|
|
restoreError?: Error;
|
|
}
|
|
|
|
export default BackupAppState;
|