Files
Prowlarr/frontend/src/App/State/ReleaseAppState.ts
2023-07-30 21:06:44 +03:00

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;