language_colours/lib/colour.ex
2021-09-03 21:51:45 +03:00

6 lines
171 B
Elixir

defmodule LanguageColours.Colour do
@typedoc """
A colour returned by the API, a hex colour of six characters with a hash prepended.
"""
@type t :: String.t()
end