mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
17 lines
422 B
TypeScript
17 lines
422 B
TypeScript
import AppSectionState, {
|
|
AppSectionFilterState,
|
|
PagedAppSectionState,
|
|
TableAppSectionState,
|
|
} from 'App/State/AppSectionState';
|
|
import History from 'typings/History';
|
|
|
|
export type MovieHistoryAppState = AppSectionState<History>;
|
|
|
|
interface HistoryAppState
|
|
extends AppSectionState<History>,
|
|
AppSectionFilterState<History>,
|
|
PagedAppSectionState,
|
|
TableAppSectionState {}
|
|
|
|
export default HistoryAppState;
|