Current section
Files
Jump to
Current section
Files
lib/clik/renderable.ex
defprotocol Clik.Renderable do
@type t :: term()
@moduledoc """
Renders `term` and writes the resulting string to `out`.
"""
@type target :: atom() | pid()
@spec render(term(), target()) :: {:ok, target()} | {:error, atom()}
def render(r, out)
end