mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
041fdd3929
Co-authored-by: Mark McDowall <markus.mcd5@gmail.com>
14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
import AppSectionState from 'App/State/AppSectionState';
|
|
import Episode from 'Episode/Episode';
|
|
|
|
interface WantedCutoffUnmetAppState extends AppSectionState<Episode> {}
|
|
|
|
interface WantedMissingAppState extends AppSectionState<Episode> {}
|
|
|
|
interface WantedAppState {
|
|
cutoffUnmet: WantedCutoffUnmetAppState;
|
|
missing: WantedMissingAppState;
|
|
}
|
|
|
|
export default WantedAppState;
|