Fixed #1674 - Wrong TypeScript-types for InputText component

pull/1711/head
Cagatay Civici 2021-10-25 14:03:47 +03:00
parent d5344092f8
commit 10e49e1de5
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ interface InputTextProps {
declare class InputText { declare class InputText {
$props: InputTextProps; $props: InputTextProps;
$emit(eventName: 'update:modelValue', value: string): this; $emit(eventName: 'update:modelValue', value: string | null): this;
} }
export default InputText; export default InputText;