Current section
Files
Jump to
Current section
Files
lib/xberg/document_relationship.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:44df7621a52239a822c632ad86d25d572eb9ff921657c2db06767d4dad50098a
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.DocumentRelationship do
@moduledoc "A resolved relationship between two nodes in the document tree."
@typedoc "A resolved relationship between two nodes in the document tree."
@type t :: %__MODULE__{
source: non_neg_integer(),
target: non_neg_integer(),
kind: String.t() | nil
}
defstruct source: 0,
target: 0,
kind: :footnote_reference
end