Sha256: 1107c6eca46838d9e59ba68f3f3e61d11ba7d82fcbb194fc1cb90d126aea805b
Contents?: true
Size: 480 Bytes
Versions: 19
Compression:
Stored size: 480 Bytes
Contents
module HTTPX::Transcoder type form_value = string type form_nested_value = form_value | _ToAry[form_value] | _ToHash[string, form_value] type urlencoded_input = Enumerable[[string, form_nested_value], untyped] module Form def self?.encode: (urlencoded_input form) -> Encoder class Encoder include _Encoder include _ToS def content_type: () -> String private def initialize: (urlencoded_input form) -> untyped end end end
Version data entries
19 entries across 19 versions & 1 rubygems