Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Copyright © 2024 Cloudnode OÜ.
* Copyright © 2024–2026 Cloudnode OÜ.
*
* This file is part of @cldn/ip.
*
Expand All @@ -15,10 +15,10 @@
* If not, see <https://www.gnu.org/licenses/>.
*/

export {IP} from "./IP.js";
export type {IP} from "./IP.js";
export {IPAddress} from "./IPAddress.js";
export {IPv4} from "./IPv4.js";
export {IPv6} from "./IPv6.js";
export {Network} from "./Network.js";
export type {Network} from "./Network.js";
export {Subnet} from "./Subnet.js";
export {SubnetList} from "./SubnetList.js";
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"target": "esnext",
"module": "Node16",
"moduleResolution": "Node16",
"isolatedModules": true,
"inlineSourceMap": true,
"outDir": "./dist",
"declaration": true,
Expand Down
Loading