Current section

Files

Jump to
xberg lib xberg djot_link.ex
Raw

lib/xberg/djot_link.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:ba94fe4cec719c31f8ac484fcc2aba1d30db0f87dea8b1b6d0257417a4a260e2
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.DjotLink do
@moduledoc "Link element in Djot."
@typedoc "Link element in Djot."
@type t :: %__MODULE__{
url: String.t() | nil,
text: String.t() | nil,
title: String.t() | nil
}
defstruct url: nil,
text: nil,
title: nil
end