Fixed #1191 - Checkbox typings insufficient

pull/1196/head^2
mertsincan 2021-05-12 13:52:46 +03:00
parent 848890c9c5
commit 378f2d6867
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
interface CheckboxProps {
value?: null;
modelValue?: null;
value?: any;
modelValue?: any;
binary?: boolean;
}