mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-22 22:16:13 -04:00
Convert Filter components to TypeScript
This commit is contained in:
@@ -25,11 +25,12 @@ function parseValue(
|
||||
}
|
||||
|
||||
interface NumberInputProps
|
||||
extends Omit<TextInputProps<number | null>, 'value'> {
|
||||
extends Omit<TextInputProps<number | null>, 'value' | 'onChange'> {
|
||||
value?: number | null;
|
||||
min?: number;
|
||||
max?: number;
|
||||
isFloat?: boolean;
|
||||
onChange: (input: InputChanged<number | null>) => void;
|
||||
}
|
||||
|
||||
function NumberInput({
|
||||
|
||||
Reference in New Issue
Block a user