Types.Table
type alignment =
| Left
| Center
| Right
| Default
type !'a t = {
data : ('a * [ `Data | `Header ]) list list;
align : alignment list;
}