Current section

Files

Jump to
opencode_sdk lib opencode generated event_lsp_client_diagnostics_properties.ex
Raw

lib/opencode/generated/event_lsp_client_diagnostics_properties.ex

defmodule OpenCode.Generated.EventLspClientDiagnosticsProperties do
@moduledoc """
Provides struct and type for a EventLspClientDiagnosticsProperties
"""
@type t :: %__MODULE__{path: String.t(), server_id: String.t()}
defstruct [:path, :server_id]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[path: :string, server_id: :string]
end
end