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

19 lines (15 loc) 349 B
import { VNode } from 'vue'; interface PanelProps { header?: string; toggleable?: boolean; collapsed?: boolean; } declare class Panel { $props: PanelProps; $emit(eventName: 'toggle', e: { originalEvent: Event, value: boolean; }): this; $slots: { '': VNode[]; header: VNode[]; } } export default Panel;