httpx/sig/plugins/stream.rbs
2020-10-27 17:00:44 +00:00

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