1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

Convert Menu components to TypeScript

(cherry picked from commit 12a1ef038753cdab89ae7137d06e1ba3810166b1)
This commit is contained in:
Mark McDowall
2024-12-22 15:41:53 -08:00
committed by Bogdan
parent 4dc02dcb80
commit 78f3b1f403
40 changed files with 746 additions and 1063 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import Column from 'Components/Table/Column';
import { SortDirection } from 'Helpers/Props/sortDirections';
import { ValidationFailure } from 'typings/pending';
import { FilterBuilderProp, PropertyFilter } from './AppState';
import { Filter, FilterBuilderProp } from './AppState';
export interface Error {
status?: number;
@@ -35,7 +35,7 @@ export interface TableAppSectionState {
export interface AppSectionFilterState<T> {
selectedFilterKey: string;
filters: PropertyFilter[];
filters: Filter[];
filterBuilderProps: FilterBuilderProp<T>[];
}