correcting generic type

This commit is contained in:
Niels Lyngsø
2024-04-18 09:00:21 +02:00
parent 56a7c6aa08
commit fa0e37808e

View File

@@ -9,7 +9,7 @@ function getNumberOrUndefined(value: string) {
}
@customElement('umb-input-number-range')
export class UmbInputNumberRangeElement extends UmbFormControlMixin<string | undefined, typeof UmbLitElement>(
export class UmbInputNumberRangeElement extends UmbFormControlMixin<string | undefined, typeof UmbLitElement, ''>(
UmbLitElement,
'',
) {