sig/plugins/multipart.rbs in httpx-0.10.0 vs sig/plugins/multipart.rbs in httpx-0.10.1

- old
+ new

@@ -1,19 +1,21 @@ module HTTPX module Plugins module Multipart - # def self.load_dependencies: (singleton(Session)) -> void + def self.load_dependencies: (singleton(Session)) -> void def self.configure: (*untyped) -> void def self?.encode: (untyped) -> Encoder class Encoder include Transcoder::_Encoder include _ToS include _Reader private - def initalize: (Hash[Symbol | string, HTTP::FormData::Part | string] multipart_data) -> untyped + def initialize: (Hash[Symbol | string, HTTP::FormData::Part | string] multipart_data) -> untyped + + def multipart?: (top) -> bool end end end end