sig/chainable.rbs in httpx-0.22.5 vs sig/chainable.rbs in httpx-0.23.0

- old
+ new

@@ -1,11 +1,11 @@ module HTTPX module Chainable def request: (*Request, **untyped) -> Array[response] | (Request, **untyped) -> response - | (verb | string, uri | [uri], **untyped) -> response - | (Array[[verb | string, uri] | [verb | string, uri, options]], **untyped) -> Array[response] - | (verb | string, _Each[uri | [uri, options]], **untyped) -> Array[response] + | (verb, uri | [uri], **untyped) -> response + | (Array[[verb, uri] | [verb, uri, options]], **untyped) -> Array[response] + | (verb, _Each[uri | [uri, options]], **untyped) -> Array[response] def accept: (String) -> Session def wrap: () { (Session) -> void } -> void def with: (options) -> Session