1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00

Convert System to TypeScript

This commit is contained in:
Mark McDowall
2024-07-26 23:16:03 -07:00
committed by Mark McDowall
parent ebc5cdb335
commit 72db8099e0
33 changed files with 960 additions and 1385 deletions
+1
View File
@@ -6,6 +6,7 @@ type PropertyFunction<T> = () => T;
interface Column {
name: string;
label: string | PropertyFunction<string> | React.ReactNode;
className?: string;
columnLabel?: string;
isSortable?: boolean;
isVisible: boolean;