You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
642 B
7 lines
642 B
import type { useFormItemInputId } from 'element-plus/es/components/form';
|
|
import type { CheckboxProps } from '../checkbox';
|
|
import type { CheckboxDisabled, CheckboxModel, CheckboxStatus } from '../composables';
|
|
export declare const useCheckboxEvent: (props: CheckboxProps, { model, isLimitExceeded, hasOwnLabel, isDisabled, isLabeledByFormItem, }: Pick<CheckboxModel, 'model' | 'isLimitExceeded'> & Pick<CheckboxStatus, 'hasOwnLabel'> & Pick<CheckboxDisabled, 'isDisabled'> & Pick<ReturnType<typeof useFormItemInputId>, 'isLabeledByFormItem'>) => {
|
|
handleChange: (e: Event) => void;
|
|
onClickRoot: (e: MouseEvent) => Promise<void>;
|
|
};
|
|
|