1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04:00

Convert Add New Series to TypeScript

This commit is contained in:
Mark McDowall
2025-01-11 21:39:48 -08:00
parent ee46e6378a
commit 87c840974b
22 changed files with 818 additions and 1107 deletions
@@ -7,12 +7,13 @@ import EnhancedSelectInput, {
EnhancedSelectInputValue,
} from './EnhancedSelectInput';
interface LanguageSelectInputOnChangeProps {
export interface LanguageSelectInputOnChangeProps {
name: string;
value: number | string | Language;
}
export interface LanguageSelectInputProps {
className?: string;
name: string;
value: number | string | Language;
includeNoChange?: boolean;