1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Convert Indexer settings to TypeScript

This commit is contained in:
Mark McDowall
2025-01-01 00:33:01 -08:00
parent 27f81117ed
commit 6e008a8e85
32 changed files with 1156 additions and 1575 deletions
@@ -1,5 +1,6 @@
import React, { FocusEvent, ReactNode } from 'react';
import Link from 'Components/Link/Link';
import DownloadProtocol from 'DownloadClient/DownloadProtocol';
import { inputTypes } from 'Helpers/Props';
import { InputType } from 'Helpers/Props/inputTypes';
import { Kind } from 'Helpers/Props/kinds';
@@ -158,6 +159,7 @@ interface FormInputGroupProps<T> {
selectOptionsProviderAction?: string;
indexerFlags?: number;
pending?: boolean;
protocol?: DownloadProtocol;
canEdit?: boolean;
includeAny?: boolean;
delimiters?: string[];