mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
16 lines
303 B
Plaintext
16 lines
303 B
Plaintext
module HTTPX
|
|
module Plugins
|
|
module Expect
|
|
EXPECT_TIMEOUT: Integer
|
|
|
|
interface _ExpectOptions
|
|
def expect_timeout: () -> Integer?
|
|
|
|
def expect_threshold_size: () -> Integer?
|
|
end
|
|
|
|
def self.extra_options: (Options) -> (Options & _ExpectOptions)
|
|
end
|
|
end
|
|
end
|