mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-06 00:02:08 -04:00
19 lines
384 B
Plaintext
19 lines
384 B
Plaintext
module HTTPX
|
|
module Plugins
|
|
module Stream
|
|
# def self.load_dependencies: (singleton(Session)) -> void
|
|
|
|
module InstanceMethods
|
|
def stream: () -> instance
|
|
end
|
|
|
|
module ResponseMethods
|
|
def complete?: () -> bool
|
|
def stream?: () -> bool
|
|
end
|
|
end
|
|
|
|
type sessionStream = Session & Plugins::H2C::InstanceMethods
|
|
end
|
|
end
|