1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00
Files
Sonarr/frontend/src/App/State/WantedAppState.ts
2024-12-16 20:57:48 -08:00

14 lines
350 B
TypeScript

import AppSectionState from 'App/State/AppSectionState';
import Episode from 'Episode/Episode';
type WantedCutoffUnmetAppState = AppSectionState<Episode>;
type WantedMissingAppState = AppSectionState<Episode>;
interface WantedAppState {
cutoffUnmet: WantedCutoffUnmetAppState;
missing: WantedMissingAppState;
}
export default WantedAppState;