Fixed #1674 - Wrong TypeScript-types for InputText component
parent
d5344092f8
commit
10e49e1de5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue