UNPKG

actionhero

Version:

The reusable, scalable, and quick node.js API server for stateless and stateful applications

9 lines (8 loc) 216 B
/** * Parse an IPv6 address, returning both host and port. * see https://github.com/actionhero/actionhero/issues/275 */ export declare function parseIPv6URI(addr: string): { host: string; port: number; };