sig/httpx.rbs in httpx-0.18.7 vs sig/httpx.rbs in httpx-0.19.0
- old
+ new
@@ -1,15 +1,19 @@
module HTTPX
extend Chainable
+ EMPTY: Array[untyped]
+
VERSION: String
type uri = URI::HTTP | URI::HTTPS | string
type generic_uri = String | URI::Generic
type verb = :options | :get | :head | :post | :put | :delete | :trace | :connect |
:propfind | :proppatch | :mkcol | :copy | :move | :lock | :unlock | :orderpatch |
:acl | :report | :patch | :search
+
+ type ip_family = Integer #Socket::AF_INET6 | Socket::AF_INET
module Plugins
def self?.load_plugin: (Symbol) -> Module
def self?.register_plugin: (Symbol, Module) -> void
\ No newline at end of file