1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Convert Episode and Season search to TypeScript

Co-authored-by: Mark McDowall <markus.mcd5@gmail.com>
This commit is contained in:
Bogdan
2024-08-20 05:59:32 +03:00
committed by Mark McDowall
parent 4548dcdf97
commit 041fdd3929
47 changed files with 1082 additions and 1475 deletions
@@ -32,6 +32,7 @@ import {
reprocessInteractiveImportItems,
updateInteractiveImportItem,
} from 'Store/Actions/interactiveImportActions';
import CustomFormat from 'typings/CustomFormat';
import { SelectStateInputProps } from 'typings/props';
import Rejection from 'typings/Rejection';
import formatBytes from 'Utilities/Number/formatBytes';
@@ -66,7 +67,7 @@ interface InteractiveImportRowProps {
languages?: Language[];
size: number;
releaseType: ReleaseType;
customFormats?: object[];
customFormats?: CustomFormat[];
customFormatScore?: number;
indexerFlags: number;
rejections: Rejection[];
@@ -92,7 +93,7 @@ function InteractiveImportRow(props: InteractiveImportRowProps) {
releaseGroup,
size,
releaseType,
customFormats,
customFormats = [],
customFormatScore,
indexerFlags,
rejections,