1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00

New: History custom filters

Closes #2974
This commit is contained in:
Mark McDowall
2023-05-22 20:06:32 -07:00
committed by Mark McDowall
parent e357d17b18
commit 2fe8f3084c
15 changed files with 265 additions and 24 deletions
+10
View File
@@ -0,0 +1,10 @@
import AppSectionState, {
AppSectionFilterState,
} from 'App/State/AppSectionState';
import History from 'typings/History';
interface HistoryAppState
extends AppSectionState<History>,
AppSectionFilterState<History> {}
export default HistoryAppState;