mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
18 lines
500 B
Plaintext
18 lines
500 B
Plaintext
module HTTPX
|
|
extend Chainable
|
|
|
|
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
|
|
|
|
module Plugins
|
|
def self?.load_plugin: (Symbol) -> Module
|
|
|
|
def self?.register_plugin: (Symbol, Module) -> void
|
|
end
|
|
end |