primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [ • 570 B
TypeScript
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;