fix: checkbox ts generic

This commit is contained in:
zhangguanyu02 2019-01-08 18:40:03 +08:00 committed by 偏右
parent 6f9f29799c
commit aff3f2ece0

View File

@ -39,7 +39,7 @@ export interface CheckboxChangeEvent {
nativeEvent: MouseEvent;
}
export default class Checkbox extends React.Component<CheckboxProps, {}, {}> {
export default class Checkbox extends React.Component<CheckboxProps, {}> {
static Group: typeof CheckboxGroup;
static defaultProps = {
indeterminate: false,