@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
16 lines (15 loc) • 513 B
TypeScript
import type { MouseEventHandler } from '../../_util/EventInterface';
export interface CheckboxProps {
prefixCls: string;
checked?: boolean;
halfChecked?: boolean;
disabled?: boolean;
onClick?: MouseEventHandler;
}
declare function Checkbox({ prefixCls, checked, halfChecked, disabled, onClick, }: CheckboxProps): import("vue/jsx-runtime").JSX.Element;
declare namespace Checkbox {
var props: string[];
var displayName: string;
var inheritAttrs: boolean;
}
export default Checkbox;