httpx/sig/transcoder/json.rbs
2021-01-13 12:27:13 +00:00

17 lines
268 B
Plaintext

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