Convert some selectors to Typescript

This commit is contained in:
Bogdan
2023-07-29 03:13:40 +03:00
parent eee1be784b
commit cab50b35aa
13 changed files with 86 additions and 22 deletions
@@ -7,6 +7,11 @@ import DownloadClient from 'typings/DownloadClient';
import Notification from 'typings/Notification';
import { UiSettings } from 'typings/UiSettings';
export interface AppProfileAppState
extends AppSectionState<Application>,
AppSectionDeleteState,
AppSectionSaveState {}
export interface ApplicationAppState
extends AppSectionState<Application>,
AppSectionDeleteState,
@@ -24,6 +29,7 @@ export interface NotificationAppState
export type UiSettingsAppState = AppSectionState<UiSettings>;
interface SettingsAppState {
appProfiles: AppProfileAppState;
applications: ApplicationAppState;
downloadClients: DownloadClientAppState;
notifications: NotificationAppState;