UNPKG

@aplus-frontend/ui

Version:

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