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;