Current section

Files

Jump to
table_rex lib table_rex column.ex
Raw

lib/table_rex/column.ex

defmodule TableRex.Column do
@moduledoc """
Defines a struct that represents a column's metadata
"""
defstruct align: :center, padding: 1
@type t :: %__MODULE__{}
@alignment_options [:left, :center, :right]
end