UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

21 lines (17 loc) 453 B
import { IBaseProps } from '../../_util/base'; import { ChecklistItem } from '../props'; /** * @description 可勾选列表单项 */ export interface IChecklistItemProps extends IBaseProps { item: ChecklistItem; checked: boolean; /** * @description 当项选项值改变时触发 */ onChange: (item: ChecklistItem) => void; } export const ChecklistItemDefaultProps: Partial<IChecklistItemProps> = { item: null, checked: false, };