1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00

Convert Indexer settings to TypeScript

This commit is contained in:
Mark McDowall
2025-01-01 00:33:01 -08:00
parent 3991eec5e0
commit ac2ecae874
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[];