mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
11 lines
262 B
TypeScript
11 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;
|