| 46 | } |
| 47 | |
| 48 | type TableLayout interface { |
| 49 | AddColumn(header string, width float64, align string) |
| 50 | AddRow(row []string) |
| 51 | AddStyledRow(row []RowCell) |
| 52 | SetTableStyle(style CellStyle) |
| 53 | SetHeaderStyle(style CellStyle) |
| 54 | SetCellStyle(style CellStyle) |
| 55 | DrawTable() error |
| 56 | } |
| 57 | |
| 58 | // Represents the layout of a table |
| 59 | type tableLayout struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…