Current section

Files

Jump to
opencode_sdk lib opencode generated config_tool_output.ex
Raw

lib/opencode/generated/config_tool_output.ex

defmodule OpenCode.Generated.ConfigToolOutput do
@moduledoc """
Provides struct and type for a ConfigToolOutput
"""
@type t :: %__MODULE__{max_bytes: integer | nil, max_lines: integer | nil}
defstruct [:max_bytes, :max_lines]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[max_bytes: :integer, max_lines: :integer]
end
end