UNPKG
ip-subnet
Version:
latest (0.1.2)
0.1.2
0.1.0
A library of IP Subnetting utility functions
github.com/kjithin/ip-subnet
kjithin/ip-subnet
ip-subnet
/
lib
/
ip.d.ts
10 lines
(9 loc)
•
230 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export declare class IP { private _ipAddress;
constructor
(ipAddress: string);
toArray
(): number[];
toString
(): string;
getNetworkAddress
(netMask: IP): IP;
toBinaryString
(): string;
isMask
(): boolean; }