diff --git a/src/components/column/Column.d.ts b/src/components/column/Column.d.ts new file mode 100644 index 000000000..cf252b7f6 --- /dev/null +++ b/src/components/column/Column.d.ts @@ -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; +} \ No newline at end of file