httpx/sig/resolver/system.rbs
HoneyryderChuck 6b61b8ccdb fixing signatures
also adding some checks on code, in order for steep to stop complaining
about potential nil returns.
2021-08-10 10:28:58 +01:00

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