d.ts for Tree

pull/41/head
cagataycivici 2019-08-02 19:33:53 +03:00
parent ee484079f7
commit 7a5d70352c
2 changed files with 23 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import Vue, {VNode} from 'vue';
export declare class OrderList extends Vue {
export declare class OrganizationChart extends Vue {
value?: any;
selectionKeys?: any;
selectionMode?: string;

22
src/components/tree/Tree.d.ts vendored Normal file
View File

@ -0,0 +1,22 @@
import Vue, {VNode} from 'vue';
export declare class Tree extends Vue {
value?: any;
expandedKeys?: any;
selectionKeys?: any;
selectionMode?: string;
metaKeySelection?: string;
loading?: boolean;
loadingIcon?: string;
filter?: boolean;
filterBy?: string;
filterMode?: string;
filterPlaceholder?: string;
$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[];
}
}