Skip to content

Commit

Permalink
fix type documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
doughsay committed Oct 19, 2020
1 parent b142c90 commit cdb0799
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions lib/rgb_matrix.ex
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
defmodule RGBMatrix do
@moduledoc false
@moduledoc """
RGBMatrix is a rendering engine for the Nerves Keyboard project. It schedules
and renders frames. There is a small selection of animations built in.
"""

@type any_color_model ::
Chameleon.Color.RGB.t()
| Chameleon.Color.CMYK.t()
| Chameleon.Color.Hex.t()
| Chameleon.Color.HSL.t()
| Chameleon.Color.HSV.t()
| Chameleon.Color.Keyword.t()
| Chameleon.Color.Pantone.t()
Chameleon.RGB.t()
| Chameleon.CMYK.t()
| Chameleon.Hex.t()
| Chameleon.HSL.t()
| Chameleon.HSV.t()
| Chameleon.Keyword.t()
| Chameleon.Pantone.t()
end

0 comments on commit cdb0799

Please sign in to comment.