[table] adds missing wrapWord property (#36681)

see: https://github.com/gajus/table/blob/master/src/schemas/config.json#L44
This commit is contained in:
Dimitri Mitropoulos 2019-07-08 12:44:26 -04:00 committed by Andrew Branch
parent bced412226
commit 59a57e00d8

View File

@ -8,10 +8,11 @@ export type BorderType = 'honeywell' | 'norc' | 'ramac' | 'void';
export interface ColumnConfig {
alignment?: 'left' | 'center' | 'right';
width?: number;
truncate?: number;
paddingLeft?: number;
paddingRight?: number;
truncate?: number;
width?: number;
wrapWord?: boolean;
}
export interface JoinStruct {