mirror of
https://github.com/Sonarr/Sonarr
synced 2026-05-04 19:10:54 +02:00
13 lines
376 B
TypeScript
13 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;
|