mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-06 00:02:08 -04:00
15 lines
295 B
Plaintext
15 lines
295 B
Plaintext
module HTTPX
|
|
module Plugins
|
|
module Persistent
|
|
def self.load_dependencies: (singleton(Session)) -> void
|
|
|
|
def self.extra_options: (Options) -> (Options)
|
|
|
|
module InstanceMethods
|
|
end
|
|
end
|
|
|
|
type sessionPersistent = Session & Persistent::InstanceMethods
|
|
end
|
|
end
|