View Source Clik.Output.Table (Clik v0.2.1)

Link to this section Summary

Link to this section Types

@type colnum() :: non_neg_integer()
@type format_hint() :: :left | :right | :center
@type t() :: %Clik.Output.Table{
  columns: non_neg_integer(),
  headers: [] | [String.t()] | [{format_hint(), String.t()}],
  max_widths: %{required(colnum()) => non_neg_integer()},
  rows: [] | [[String.t()]]
}

Link to this section Functions