UNPKG

@aplus-frontend/ui

Version:

35 lines (34 loc) 1.28 kB
import { ApTextProps } from './interface'; import { LinkProps } from '@aplus-frontend/antdv/es/typography/Link'; import { DefineComponent, ComponentOptionsMixin, PublicProps, CSSProperties, ComponentProvideOptions } from 'vue'; type ApTextSlots = { default: any; ellipsisSymbol: any; editableIcon: any; editableTooltip: any; copyableTooltip: any; copyableIcon: any; editableEnterIcon: any; ellipsisTooltip: any; addonAfter: any; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<Partial<ApTextSlots>> & Partial<ApTextSlots>; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: DefineComponent<ApTextProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApTextProps> & Readonly<{}>, { vertical: boolean; labelStyle: CSSProperties; colon: boolean; linkProps: LinkProps; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };