mirror of
https://github.com/Radarr/Radarr
synced 2026-04-25 10:02:09 +02:00
- Remove duplicate dotnet_style_qualification rules in .editorconfig - Update Radarr branding to Aletheia in .editorconfig - Add integration tests step to build.yml (with continue-on-error) - Upgrade Prettier to 3.7.4, eslint-plugin-prettier to 5.5.4 - Upgrade eslint-config-prettier to 10.1.8 - Fix pre-existing lint errors (unused vars, radix parameter) - Reformat frontend code with Prettier 3 formatting changes Closes #57 (SonarCloud deferred - needs org setup) Closes #58, #62 (partial - ESLint 9 deferred), #63 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
426 B
TypeScript
17 lines
426 B
TypeScript
import AppSectionState, {
|
|
AppSectionFilterState,
|
|
PagedAppSectionState,
|
|
TableAppSectionState,
|
|
} from 'App/State/AppSectionState';
|
|
import History from 'typings/History';
|
|
|
|
export type MovieHistoryAppState = AppSectionState<History>;
|
|
|
|
interface HistoryAppState
|
|
extends
|
|
AppSectionState<History>,
|
|
AppSectionFilterState<History>,
|
|
PagedAppSectionState,
|
|
TableAppSectionState {}
|
|
|
|
export default HistoryAppState;
|