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 { interface CheckboxProps {
value?: null; value?: any;
modelValue?: null; modelValue?: any;
binary?: boolean; binary?: boolean;
} }