UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

29 lines (23 loc) 447 B
import { VNode } from 'vue'; interface DockProps { position?: string; model?: any[]; class?: string; style?: any; exact?: boolean; tooltipOptions?: any; } interface DockItemSlotInterface { item: any; } interface DockIconSlotInterface { item: any; } declare class Dock { $props: DockProps; $slots: { item: DockItemSlotInterface; icon: DockIconSlotInterface; } } export default Dock;