1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

Convert Cutoff Unmet to TypeScript

(cherry picked from commit 45c53bea865447aa543242e64e3d796c93117975)
This commit is contained in:
Mark McDowall
2025-01-04 19:03:01 -08:00
committed by Bogdan
parent 4de78e3bab
commit c3ee8b3c90
10 changed files with 553 additions and 656 deletions
+4 -2
View File
@@ -24,6 +24,7 @@ import RootFolderAppState from './RootFolderAppState';
import SettingsAppState from './SettingsAppState';
import SystemAppState from './SystemAppState';
import TagsAppState from './TagsAppState';
import WantedAppState from './WantedAppState';
interface FilterBuilderPropOption {
id: string;
@@ -47,14 +48,14 @@ export interface PropertyFilter {
export interface Filter {
key: string;
label: string | (() => string);
filers: PropertyFilter[];
filters: PropertyFilter[];
}
export interface CustomFilter {
id: number;
type: string;
label: string;
filers: PropertyFilter[];
filters: PropertyFilter[];
}
export interface AppSectionState {
@@ -105,6 +106,7 @@ interface AppState {
settings: SettingsAppState;
system: SystemAppState;
tags: TagsAppState;
wanted: WantedAppState;
}
export default AppState;