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