Radarr/frontend/src/App/State/HistoryAppState.ts

11 lines
260 B
TypeScript

import AppSectionState, {
AppSectionFilterState,
} from 'App/State/AppSectionState';
import History from 'typings/History';
interface HistoryAppState
extends AppSectionState<History>,
AppSectionFilterState<History> {}
export default HistoryAppState;