UNPKG

element-pro-components

Version:

a component library for Vue 3 base on element-plus

8 lines (7 loc) 424 B
import Checkbox from './Checkbox'; import { checkboxProps, checkboxEmits } from './props'; import type { IDefineProps, IDefineEmits, IDefinePlugin } from '../types/index'; export { checkboxProps, checkboxEmits } from './props'; export declare const ProCheckbox: IDefinePlugin<typeof Checkbox>; export type ICheckboxProps = IDefineProps<typeof checkboxProps>; export type ICheckboxEmits = IDefineEmits<typeof checkboxEmits>;