|
|
@ -10,7 +10,6 @@ import ImportList from 'typings/ImportList';
|
|
|
|
import Indexer from 'typings/Indexer';
|
|
|
|
import Indexer from 'typings/Indexer';
|
|
|
|
import Notification from 'typings/Notification';
|
|
|
|
import Notification from 'typings/Notification';
|
|
|
|
import QualityProfile from 'typings/QualityProfile';
|
|
|
|
import QualityProfile from 'typings/QualityProfile';
|
|
|
|
import RootFolder from 'typings/RootFolder';
|
|
|
|
|
|
|
|
import { UiSettings } from 'typings/UiSettings';
|
|
|
|
import { UiSettings } from 'typings/UiSettings';
|
|
|
|
|
|
|
|
|
|
|
|
export interface DownloadClientAppState
|
|
|
|
export interface DownloadClientAppState
|
|
|
@ -36,11 +35,6 @@ export interface QualityProfilesAppState
|
|
|
|
extends AppSectionState<QualityProfile>,
|
|
|
|
extends AppSectionState<QualityProfile>,
|
|
|
|
AppSectionSchemaState<QualityProfile> {}
|
|
|
|
AppSectionSchemaState<QualityProfile> {}
|
|
|
|
|
|
|
|
|
|
|
|
export interface RootFolderAppState
|
|
|
|
|
|
|
|
extends AppSectionState<RootFolder>,
|
|
|
|
|
|
|
|
AppSectionDeleteState,
|
|
|
|
|
|
|
|
AppSectionSaveState {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type LanguageSettingsAppState = AppSectionState<Language>;
|
|
|
|
export type LanguageSettingsAppState = AppSectionState<Language>;
|
|
|
|
export type UiSettingsAppState = AppSectionItemState<UiSettings>;
|
|
|
|
export type UiSettingsAppState = AppSectionItemState<UiSettings>;
|
|
|
|
|
|
|
|
|
|
|
@ -51,7 +45,6 @@ interface SettingsAppState {
|
|
|
|
languages: LanguageSettingsAppState;
|
|
|
|
languages: LanguageSettingsAppState;
|
|
|
|
notifications: NotificationAppState;
|
|
|
|
notifications: NotificationAppState;
|
|
|
|
qualityProfiles: QualityProfilesAppState;
|
|
|
|
qualityProfiles: QualityProfilesAppState;
|
|
|
|
rootFolders: RootFolderAppState;
|
|
|
|
|
|
|
|
ui: UiSettingsAppState;
|
|
|
|
ui: UiSettingsAppState;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|