(minWidth: number | string, tableWidth: number)
| 56 | |
| 57 | // cannot support FR units, we'd need to know everything else in the table to do that |
| 58 | export function getMinWidth(minWidth: number | string, tableWidth: number): number { |
| 59 | return minWidth != null ? parseStaticWidth(minWidth, tableWidth) : 0; |
| 60 | } |
| 61 | |
| 62 | export interface IColumn { |
| 63 | minWidth?: number | string; |
no test coverage detected