mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-06 00:02:08 -04:00
17 lines
268 B
Plaintext
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
|