Skip to content

Commit

Permalink
Merge branch 'wip-v1.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
dadepo committed Feb 17, 2021
2 parents ee792fe + d6f758d commit dc81125
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion spec/PoolTest.ts
Expand Up @@ -7,7 +7,7 @@ import {
IPv6Prefix,
RangedSet
} from "../src";
import {Pool} from "../src/IPPool";
import {Pool} from "../src";
import bigInt = require("big-integer");

describe('Pool', () => {
Expand Down
8 changes: 4 additions & 4 deletions src/IPNumType.ts
@@ -1,5 +1,5 @@
export enum IPNumType {
ASN,
IPv4,
IPv6
export const enum IPNumType {
ASN = "ASN",
IPv4 = "IPv4",
IPv6 = "IPv6"
}
5 changes: 3 additions & 2 deletions src/index.ts
Expand Up @@ -7,12 +7,13 @@
* ipNum.IPv4CidrRange // gets access to IPv4CidrRange
* ipNum.Asn // gets access to Asn
*/
export * from './IPRange'
export * from './IPNumber'
export * from './BinaryUtils'
export * from './Hexadecatet'
export * from './HexadecimalUtils'
export * from './IPNumber'
export * from './IPNumType'
export * from './IPPool'
export * from './IPRange'
export * from './IPv6Utils'
export * from './Octet'
export * from './Prefix'
Expand Down

0 comments on commit dc81125

Please sign in to comment.