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

Convert Interactive Search to TypeScript

This commit is contained in:
Bogdan
2024-08-30 11:49:26 +03:00
committed by Mark McDowall
parent 546e9fd1d0
commit 0a0e03dca0
17 changed files with 409 additions and 435 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;
}