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