antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
15 lines (14 loc) • 432 B
TypeScript
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 declare const ChecklistItemDefaultProps: Partial<IChecklistItemProps>;