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

20 lines
323 B
Plaintext

module HTTPX
module Transcoder
module Body
class Encoder
include _Encoder
include _ToS
@raw: bodyIO
def content_type: () -> String
private
def initialize: (untyped body ) -> untyped
end
def self?.encode: (bodyIO body) -> Encoder
end
end
end