1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

Convert Interactive Search to TypeScript

This commit is contained in:
Bogdan
2025-03-02 21:24:29 +02:00
parent 22b5739967
commit 95da7d7b47
19 changed files with 500 additions and 545 deletions
+2
View File
@@ -1,4 +1,5 @@
import React from 'react';
import { SortDirection } from 'Helpers/Props/sortDirections';
type PropertyFunction<T> = () => T;
@@ -9,6 +10,7 @@ interface Column {
className?: string;
columnLabel?: string;
isSortable?: boolean;
fixedSortDirection?: SortDirection;
isVisible: boolean;
isModifiable?: boolean;
}