UNPKG

@prefecthq/prefect-design

Version:

A collection of low-level Vue components.

38 lines (37 loc) 1.23 kB
import { PositionMethod } from '../../types'; type __VLS_Props = { placement?: PositionMethod | PositionMethod[]; disableAutoClose?: boolean; disableCloseOnEscape?: boolean; disableCloseOnMenuClick?: boolean; positionAtClick?: boolean; group?: string; }; declare var __VLS_8: { toggle: () => void; open: () => void; close: () => void; visible: boolean; }, __VLS_11: { close: () => void; }, __VLS_20: { close: () => void; }; type __VLS_Slots = {} & { target?: (props: typeof __VLS_8) => any; } & { 'context-menu'?: (props: typeof __VLS_11) => any; } & { default?: (props: typeof __VLS_20) => any; }; declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, { placement: PositionMethod | PositionMethod[]; group: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };