UNPKG

@prefecthq/prefect-design

Version:

A collection of low-level Vue components.

47 lines (46 loc) 1.55 kB
import { PositionMethod } from '../../types/position'; type __VLS_Props = { placement?: PositionMethod | PositionMethod[]; autoClose?: boolean; to?: string | Element; group?: string; }; declare function open(): void; declare function close(): void; declare function toggle(): void; declare var __VLS_1: { open: typeof open; close: typeof close; toggle: typeof toggle; visible: boolean; }, __VLS_8: { close: typeof close; }; type __VLS_Slots = {} & { target?: (props: typeof __VLS_1) => any; } & { default?: (props: typeof __VLS_8) => any; }; declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, { open: typeof open; close: typeof close; toggle: typeof toggle; visible: import("vue").Ref<boolean, boolean>; target: import("vue").Ref<Element | undefined, Element | undefined>; content: import("vue").Ref<Element | undefined, Element | undefined>; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { open: (value: boolean) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onOpen?: ((value: boolean) => any) | undefined; }>, { to: string | Element; 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; }; };