artwork-react-native
Version:
artwork design master for react-native
17 lines (16 loc) • 386 B
TypeScript
export interface CheckboxProps {
style?: {};
defaultChecked?: boolean;
checked?: boolean;
disabled?: boolean;
onChange?: Function;
}
export interface CheckboxItemProps extends CheckboxProps {
children?: any;
extra?: any;
onClick?: () => any;
checkboxProps?: Object;
}
export interface AgreeItemPropsType extends CheckboxProps {
children?: any;
}