class LHC::Formats::JSON

def to_body(input)

Experimental RBS support (using type sampling data from the type_fusion project).

def to_body: (Hash input) -> String

This signature was generated using 26 samples from 2 applications.

def to_body(input)
  if input.is_a?(String)
    input
  else
    input.to_json
  end
end