primevue-mirror/src/components/organizationchart/OrganizationChart.d.ts

16 lines
482 B
TypeScript
Raw Normal View History

2019-07-28 13:53:11 +00:00
import Vue, {VNode} from 'vue';
2019-08-02 16:33:53 +00:00
export declare class OrganizationChart extends Vue {
2019-07-28 13:53:11 +00:00
value?: any;
selectionKeys?: any;
selectionMode?: string;
collapsedKeys?: any;
collapsible?: boolean;
$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[];
}
}