httpx/sig/transcoder/json.rbs
2020-10-27 17:00:44 +00:00

18 lines
288 B
Plaintext

module HTTPX::Transcoder
module JSON
def self?.encode: (_ToJson json) -> Encoder
class Encoder
include _Encoder
include _ToS
include _ToStr
def content_type: () -> String
private
def initalize: (_ToJson json) -> untyped
end
end
end