Current section

Files

Jump to
xberg lib xberg document_relationship.ex
Raw

lib/xberg/document_relationship.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:c42b3ed17053806bdcf42dea768a2aecba67c8ec1370751ea7323b02483cbce1
# 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