mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-17 21:44:48 -04:00
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import AppSectionState, {
|
|
AppSectionDeleteState,
|
|
} from 'App/State/AppSectionState';
|
|
import Release from 'typings/Release';
|
|
|
|
interface ReleaseAppState
|
|
extends AppSectionState<Release>,
|
|
AppSectionDeleteState {}
|
|
|
|
export default ReleaseAppState;
|