mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
17 lines
285 B
Plaintext
17 lines
285 B
Plaintext
module HTTPX
|
|
class DomainName
|
|
type domain = string | DomainName
|
|
|
|
include Comparable
|
|
|
|
def normalize: (String) -> String
|
|
|
|
def cookie_domain?: (domain, ?bool?) -> bool
|
|
|
|
def self.new: (domain) -> untyped
|
|
|
|
private
|
|
|
|
def initialize: (string) -> untyped
|
|
end
|
|
end |