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

24 lines (20 loc) 451 B
import { VNode } from 'vue'; interface SidebarProps { visible?: boolean; position?: string; baseZIndex?: number; autoZIndex?: boolean; dismissable?: boolean; showCloseIcon?: boolean; modal?: boolean; ariaCloseLabel?: string; } declare class Sidebar { $props: SidebarProps; $emit(eventName: 'show'): this; $emit(eventName: 'hide'): this; $slots: { '': VNode[]; } } export default Sidebar;