lib/gen_lsp/protocol/type_aliases/progress_token.ex

# codegen: do not edit
defmodule GenLSP.TypeAlias.ProgressToken do
  import Schematic, warn: false

  @type t :: integer() | String.t()

  @doc false
  @spec schematic() :: Schematic.t()
  def schematic() do
    oneof([int(), str()])
  end
end