language_colours/lib/colour.ex

7 lines
171 B
Elixir
Raw Normal View History

2021-09-03 18:43:37 +00:00
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