From 10e49e1de5a7df06f2bbb37d68fa2e007426dbd4 Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Mon, 25 Oct 2021 14:03:47 +0300 Subject: [PATCH] Fixed #1674 - Wrong TypeScript-types for InputText component --- src/components/inputtext/InputText.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/inputtext/InputText.d.ts b/src/components/inputtext/InputText.d.ts index 09b77492a..be08ab1eb 100755 --- a/src/components/inputtext/InputText.d.ts +++ b/src/components/inputtext/InputText.d.ts @@ -4,7 +4,7 @@ interface InputTextProps { declare class InputText { $props: InputTextProps; - $emit(eventName: 'update:modelValue', value: string): this; + $emit(eventName: 'update:modelValue', value: string | null): this; } export default InputText;