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

23 lines (19 loc) 570 B
import { VNode } from 'vue'; interface OrganizationChartProps { value?: any; selectionKeys?: any; selectionMode?: string; collapsedKeys?: any; collapsible?: boolean; } declare class OrganizationChart { $props: OrganizationChartProps; $emit(eventName: 'node-select', node: any): this; $emit(eventName: 'node-unselect', node: any): this; $emit(eventName: 'node-expand', node: any): this; $emit(eventName: 'node-collapsed', node: any): this; $slots: { [key: string]: VNode[]; } } export default OrganizationChart;