mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-06 00:02:08 -04:00
also adding some checks on code, in order for steep to stop complaining about potential nil returns.
19 lines
317 B
Plaintext
19 lines
317 B
Plaintext
module HTTPX
|
|
module Resolver
|
|
class System
|
|
include ResolverMixin
|
|
|
|
RESOLV_ERRORS: Array[singleton(StandardError)] # ResolvError
|
|
|
|
def closed?: () -> true
|
|
|
|
def empty?: () -> true
|
|
|
|
def <<: (Connection) -> void
|
|
|
|
private
|
|
|
|
def initialize: (options) -> untyped
|
|
end
|
|
end
|
|
end |