fix(table): Add "columnCount" property to "TableUserConfig" interface

This commit is contained in:
Denis Malinochkin
2017-12-07 19:32:36 +03:00
parent 9a4cffa5e7
commit 43a7614c06
+1
View File
@@ -42,6 +42,7 @@ export interface TableUserConfig {
drawJoin?(index: number, size: number): boolean;
border?: JoinStruct;
columnDefault?: ColumnConfig;
columnCount?: number;
}
export function table(data: any[], userConfig?: TableUserConfig): string;