UNPKG

@aplus-frontend/ui

Version:

37 lines (36 loc) 1.42 kB
import { ApFormItemSwitchProps } from '../interface'; import { ApFormItemSlots } from '../../interface'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { ApFieldSwitchProps } from '../../..'; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ checkedChildren: any; unCheckedChildren: any; default: any; } & Omit<ApFormItemSlots, "default">> & { checkedChildren: any; unCheckedChildren: any; default: any; } & Omit<ApFormItemSlots, "default">; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: DefineComponent<ApFormItemSwitchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApFormItemSwitchProps> & Readonly<{}>, { disabled: boolean; colon: boolean; required: boolean; hasFeedback: boolean; autoLink: boolean; validateFirst: boolean; valuePropName: string; field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">; }, {}, {}, {}, 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; }; };