mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-05 00:02:38 -04:00
19 lines
442 B
Plaintext
19 lines
442 B
Plaintext
module HTTPX
|
|
module Utils
|
|
TOKEN: Regexp
|
|
VALUE: Regexp
|
|
FILENAME_REGEX: Regexp
|
|
FILENAME_EXTENSION_REGEX: Regexp
|
|
URIParser: URI::RFC2396_Parser
|
|
|
|
def self?.parse_retry_after: (String) -> Numeric
|
|
|
|
def self?.now: () -> Float
|
|
|
|
def self?.elapsed_time: (Integer | Float monotonic_time) -> Float
|
|
|
|
def self?.to_uri: (generic_uri uri) -> URI::Generic
|
|
|
|
def self?.get_filename: (String header) -> String?
|
|
end
|
|
end |