UNPKG

@volverjs/ui-vue

Version:

@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.

20 lines (19 loc) 427 B
import type { PropType } from 'vue'; import { Side } from '../../constants'; export declare const VvTooltipProps: { /** * Define the tooltip position * @default Side.bottom */ position: { type: PropType<`${Side}`>; default: Side; }; value: { type: StringConstructor; }; modifiers: { type: PropType<string | string[]>; default: undefined; }; };