Current section

Files

Jump to
green lib green rule.ex
Raw

lib/green/rule.ex

defmodule Green.Rule do
@moduledoc """
This is the Rule behaviour.
"""
@type forms() :: tuple()
@type comment() :: map()
@callback apply({forms(), [comment()]}, keyword()) :: {forms(), [comment()]}
end