mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
30 lines
707 B
TypeScript
30 lines
707 B
TypeScript
import AppSectionState, {
|
|
AppSectionFilterState,
|
|
PagedAppSectionState,
|
|
TableAppSectionState,
|
|
} from 'App/State/AppSectionState';
|
|
import Movie from 'Movie/Movie';
|
|
|
|
interface WantedMovie extends Movie {
|
|
isSaving?: boolean;
|
|
}
|
|
|
|
interface WantedCutoffUnmetAppState
|
|
extends AppSectionState<WantedMovie>,
|
|
AppSectionFilterState<WantedMovie>,
|
|
PagedAppSectionState,
|
|
TableAppSectionState {}
|
|
|
|
interface WantedMissingAppState
|
|
extends AppSectionState<WantedMovie>,
|
|
AppSectionFilterState<WantedMovie>,
|
|
PagedAppSectionState,
|
|
TableAppSectionState {}
|
|
|
|
interface WantedAppState {
|
|
cutoffUnmet: WantedCutoffUnmetAppState;
|
|
missing: WantedMissingAppState;
|
|
}
|
|
|
|
export default WantedAppState;
|