UNPKG

antd-mobile

Version:

<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />

14 lines (13 loc) 467 B
import { FC, ReactNode } from 'react'; import { NativeProps } from '../../utils/native-props'; import { ListProps } from '../list'; export declare type CheckListProps = Pick<ListProps, 'mode' | 'style'> & { defaultValue?: string[]; value?: string[]; onChange?: (val: string[]) => void; multiple?: boolean; activeIcon?: ReactNode; disabled?: boolean; readOnly?: boolean; } & NativeProps; export declare const CheckList: FC<CheckListProps>;