UNPKG

@aplus-frontend/ui

Version:

29 lines (28 loc) 1.25 kB
import { ApFormItemCheckboxProps } from '../interface'; import { ApFormItemSlots } from '../../interface'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { ApFieldCheckboxProps } from '../../..'; type ApFormItemCheckboxSlots = Omit<ApFormItemSlots, 'default'>; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<ApFormItemCheckboxSlots> & ApFormItemCheckboxSlots; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: DefineComponent<ApFormItemCheckboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApFormItemCheckboxProps> & Readonly<{}>, { disabled: boolean; colon: boolean; required: boolean; hasFeedback: boolean; autoLink: boolean; validateFirst: boolean; field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };