UNPKG

@prefecthq/prefect-design

Version:

A collection of low-level Vue components.

42 lines (41 loc) 1.39 kB
import { LayoutResizablePlacement } from '../../types/layoutResizable'; type __VLS_Props = { collapsePoint?: number; disabled?: boolean; placement?: LayoutResizablePlacement; }; type __VLS_PublicProps = __VLS_Props & { 'size'?: number; }; declare var __VLS_1: { collapsed: boolean; expand: () => void; collapse: () => void; toggle: () => void; size: number | undefined; }, __VLS_3: {}, __VLS_5: { collapsed: boolean; expand: () => void; collapse: () => void; toggle: () => void; asideSize: number | undefined; }; type __VLS_Slots = {} & { aside?: (props: typeof __VLS_1) => any; } & { handle?: (props: typeof __VLS_3) => any; } & { default?: (props: typeof __VLS_5) => any; }; declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:size": (value: number | undefined) => any; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:size"?: ((value: number | undefined) => any) | undefined; }>, {}, {}, {}, {}, 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; }; };