Current section
Files
Jump to
Current section
Files
lib/table_rex/column.ex
defmodule Licensir.TableRex.Column do
@moduledoc """
Defines a struct that represents a column's metadata
The align field can be one of :left, :center or :right.
"""
defstruct align: :left, padding: 1, color: nil
@type t :: %__MODULE__{}
end