mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
(cherry picked from commit 824ed0a36931ce7aae9aa544a7baf0738dae568c) Closes #10230 Closes #10390 Closes #10247
15 lines
360 B
TypeScript
15 lines
360 B
TypeScript
import AppSectionState, {
|
|
AppSectionFilterState,
|
|
PagedAppSectionState,
|
|
TableAppSectionState,
|
|
} from 'App/State/AppSectionState';
|
|
import History from 'typings/History';
|
|
|
|
interface HistoryAppState
|
|
extends AppSectionState<History>,
|
|
AppSectionFilterState<History>,
|
|
PagedAppSectionState,
|
|
TableAppSectionState {}
|
|
|
|
export default HistoryAppState;
|