-module(types@alignment). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]). -define(FILEPATH, "src/types/alignment.gleam"). -export_type([alignment/0]). -type alignment() :: left | center | right.