UNPKG

@ximax/layout

Version:

A flexible and responsive layout system for Vue3 applications

36 lines (35 loc) 1.16 kB
import { PopoverPlacement } from 'naive-ui'; interface Props { /** Button class */ class?: string; /** Iconify icon name */ icon?: string; /** Tooltip content */ tooltipContent?: string; /** Tooltip placement */ tooltipPlacement?: PopoverPlacement; zIndex?: number; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, { zIndex: number; class: string; icon: string; tooltipContent: string; tooltipPlacement: PopoverPlacement; }, {}, {}, {}, string, import('vue').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; }; };