mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-25 22:46:31 -04:00
Improve typings in FormInputGroup
This commit is contained in:
@@ -24,7 +24,8 @@ function parseValue(
|
||||
return newValue;
|
||||
}
|
||||
|
||||
interface NumberInputProps extends Omit<TextInputProps, 'value' | 'onChange'> {
|
||||
export interface NumberInputProps
|
||||
extends Omit<TextInputProps, 'value' | 'onChange'> {
|
||||
value?: number | null;
|
||||
min?: number;
|
||||
max?: number;
|
||||
|
||||
Reference in New Issue
Block a user