httpx/sig/httpx.rbs
2020-12-07 16:30:39 +00:00

15 lines
394 B
Plaintext

module HTTPX
extend Chainable
VERSION: String
type uri = URI::HTTP | URI::HTTPS | string
type generic_uri = uri | URI::Generic
type verb = :options | :get | :head | :post | :put | :delete | :trace | :connect |
:propfind | :proppatch | :mkcol | :copy | :move | :lock | :unlock | :orderpatch |
:acl | :report | :patch | :search
module Plugins
end
end