mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-07 00:05:02 -04:00
removed with_ options, which are unsupported, undocumented and irrelevant (contrary to the similar with session methods)
17 lines
394 B
Plaintext
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
|