UNPKG

@aplus-frontend/ui

Version:

31 lines (30 loc) 1.28 kB
import { ApActionItemDropdownProps } from '../interface'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { ActionColor, MixedActionTypes } from '..'; import { Trigger } from '@aplus-frontend/antdv/es/dropdown/props'; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: DefineComponent<ApActionItemDropdownProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApActionItemDropdownProps> & Readonly<{}>, { placement: "top" | "topLeft" | "bottom" | "bottomLeft" | "bottomRight" | "topRight" | "topCenter" | "bottomCenter"; visible: boolean; color: ActionColor; disabled: boolean; loading: boolean; actions: MixedActionTypes[]; trigger: Trigger | Trigger[]; showIcon: boolean; }, {}, {}, {}, 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; }; };