UNPKG

@ximax/layout

Version:

A flexible and responsive layout system for Vue3 applications

38 lines (37 loc) 1.15 kB
import { PageTabProps } from '../../types'; type SlotFn = (_props?: Record<string, unknown>) => any; type Slots = { /** * Slot * * The center content of the tab */ default?: SlotFn; /** * Slot * * The left content of the tab */ prefix?: SlotFn; /** * Slot * * The right content of the tab */ suffix?: SlotFn; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<Slots> & Slots; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<PageTabProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<PageTabProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').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; }; };