mirror of
https://github.com/Radarr/Radarr
synced 2025-12-24 01:10:41 +01:00
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
import AppSectionState, {
|
|
AppSectionFilterState,
|
|
} from 'App/State/AppSectionState';
|
|
import Release from 'typings/Release';
|
|
|
|
interface ReleasesAppState
|
|
extends AppSectionState<Release>,
|
|
AppSectionFilterState<Release> {}
|
|
|
|
export default ReleasesAppState;
|