UNPKG

@aplus-frontend/ui

Version:

50 lines (49 loc) 1.76 kB
import { ApFormItemSlots } from '../../interface'; import { ApFormItemDateRangeProps } from '../interface'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { ApFieldDateRangeProps } from '../../..'; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ suffixIcon?: any; prevIcon?: any; nextIcon?: any; superPrevIcon?: any; superNextIcon?: any; dateRender?: any; renderExtraFooter?: any; default?: any; separator?: any; clearIcon?: any; } & Omit<ApFormItemSlots, "default">> & { suffixIcon?: any; prevIcon?: any; nextIcon?: any; superPrevIcon?: any; superNextIcon?: any; dateRender?: any; renderExtraFooter?: any; default?: any; separator?: any; clearIcon?: any; } & Omit<ApFormItemSlots, "default">; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: DefineComponent<ApFormItemDateRangeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApFormItemDateRangeProps> & Readonly<{}>, { disabled: boolean; required: boolean; colon: boolean; hasFeedback: boolean; autoLink: boolean; validateFirst: boolean; field: Omit< ApFieldDateRangeProps, "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; }; };