From c7572be841b9fce48189efb5d564a1f3442a1fdf Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Sun, 28 Jul 2019 16:53:11 +0300 Subject: [PATCH] d ts for Org Chart --- .../organizationchart/OrganizationChart.d.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/components/organizationchart/OrganizationChart.d.ts b/src/components/organizationchart/OrganizationChart.d.ts index e69de29bb..93ae57997 100644 --- a/src/components/organizationchart/OrganizationChart.d.ts +++ b/src/components/organizationchart/OrganizationChart.d.ts @@ -0,0 +1,16 @@ +import Vue, {VNode} from 'vue'; + +export declare class OrderList extends Vue { + 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[]; + } +} \ No newline at end of file