UNPKG

proxy-protocol-js

Version:

A PROXY protocol builder and parser for JavaScript

8 lines (7 loc) 301 B
import { AddressFamilyType } from '../enum/AddressFamily'; import { ProxyAddress } from './ProxyAddress'; export declare class UnspecProxyAddress implements ProxyAddress { static from(data: Uint8Array): UnspecProxyAddress; getLength(): number; getAddressFamilyType(): AddressFamilyType; }