fix(table): Use correct types

This commit is contained in:
Denis Malinochkin
2017-12-07 19:34:01 +03:00
parent 43a7614c06
commit d391f37abd
+3 -3
View File
@@ -7,11 +7,11 @@
export type BorderType = 'honeywell' | 'norc' | 'ramac' | 'void';
export interface ColumnConfig {
alignment?: string;
alignment?: 'left' | 'center' | 'right';
width?: number;
truncate?: number;
paddingLeft?: string;
paddingRight?: string;
paddingLeft?: number;
paddingRight?: number;
}
export interface JoinStruct {