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