httpx/sig/plugins/persistent.rbs
HoneyryderChuck 9363d09af8 removed with_ methods from option (not of real world use)
removed with_ options, which are unsupported, undocumented and irrelevant (contrary to the similar with session methods)
2021-03-23 16:30:45 +00:00

17 lines
394 B
Plaintext

module HTTPX
module Plugins
module Persistent
def self.load_dependencies: (singleton(Session)) -> void
interface _PersistentOptions
def persistent: () -> bool?
def persistent=: (bool) -> bool
end
def self.extra_options: (Options) -> (Options & _PersistentOptions)
end
type sessionPersistent = sessionFollowRedirects
end
end