UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

18 lines (17 loc) 435 B
/// <reference types="react" /> export interface OnChangeParams { target: { checked: boolean; }; } export interface CheckboxPropsType { defaultChecked?: boolean; checked?: boolean; disabled?: boolean; onChange?: (params: OnChangeParams) => void; } export interface CheckboxItemPropsType extends CheckboxPropsType { extra?: React.ReactNode; prefixCls?: string; onPress?: (e?: any) => void; }