Fixed #29 - DataTable: missing registration component

pull/41/head
cagataycivici 2019-08-21 15:11:12 +03:00
parent 140e7e8e09
commit d95c289886
1 changed files with 20 additions and 0 deletions

20
src/components/column/Column.d.ts vendored Normal file
View File

@ -0,0 +1,20 @@
import Vue from 'vue';
export declare class Column extends Vue {
columnKey?: any;
field?: string;
sortField?: string;
sortable?: boolean;
header?: any;
footer?: any;
headerStyle?: object;
headerClass?: string;
bodyStyle?: object;
bodyClass?: string;
footerStyle?: object;
footerClass?: string;
filterMatchMode?: string;
excludeGlobalFilter?: boolean;
selectionMode?: string;
expander?: boolean;
}