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

20 lines (16 loc) 359 B
interface PanelMenuProps { model?: any[]; expandedKeys?: any; exact?: boolean; } interface PanelMenuItemSlotInterface { item: any; } declare class PanelMenu { $props: PanelMenuProps; $emit(eventName: 'update:expandedKeys', value: any): this; $slots: { item: PanelMenuItemSlotInterface; } } export default PanelMenu;