Current section

Files

Jump to
gen_lsp lib gen_lsp protocol enumerations token_format.ex
Raw

lib/gen_lsp/protocol/enumerations/token_format.ex

# codegen: do not edit
defmodule GenLSP.Enumerations.TokenFormat do
@type t :: String.t()
import Schematic, warn: false
@spec relative() :: String.t()
def relative, do: "relative"
@doc false
@spec schematic() :: Schematic.t()
def schematic() do
oneof([
"relative"
])
end
end