Sha256: 319d2d6122ea3112618f324e9cf3ac2f3e9a3eac4ef3a3eaaf60c6863783aa41
Contents?: true
Size: 575 Bytes
Versions: 35
Compression:
Stored size: 575 Bytes
Contents
export class Endpoint { /** * Constructs a new endpoint given an endpoint URL. */ constructor(url: string); /** * The host portion of the endpoint including the port, e.g., example.com:80. */ host: string; /** * The host portion of the endpoint, e.g., example.com. */ hostname: string; /** * The full URL of the endpoint. */ href: string; /** * The port of the endpoint. */ port: number; /** * The protocol (http or https) of the endpoint URL. */ protocol: string; }
Version data entries
35 entries across 35 versions & 1 rubygems