mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
11 lines
260 B
TypeScript
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;
|