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