httpx/sig/plugins/expect.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

18 lines
409 B
Plaintext

module HTTPX
module Plugins
module Expect
EXPECT_TIMEOUT: Integer
interface _ExpectOptions
def expect_timeout: () -> Integer?
def expect_timeout=: (int) -> Integer
def expect_threshold_size: () -> Integer?
def expect_threshold_size=: (int) -> Integer
end
def self.extra_options: (Options) -> (Options & _ExpectOptions)
end
end
end