Current section
Files
Jump to
Current section
Files
lib/boxic/dmn/xml/element.ex
defmodule Boxic.DMN.XML.Element do
@moduledoc false
defstruct [:name, attrs: [], children: []]
@type child :: t() | {:text, String.t()}
@type t :: %__MODULE__{name: String.t(), attrs: [{String.t(), String.t()}], children: [child()]}
end