From 23b7b189b2c2aea536e7c6ba8661365b57ea78f7 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 10 Dec 2023 21:57:36 -0500 Subject: [PATCH] refactor: export cid --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 327e774..e8c6f66 100644 --- a/src/index.ts +++ b/src/index.ts @@ -21,7 +21,7 @@ export type { SignedRegistryEntry, KeyPairEd25519 }; import Packer from "./serialization/pack.js"; import Unpacker from "./serialization/unpack.js"; -export { Packer, Unpacker }; +export { Packer, Unpacker, CID }; export function createNode(config: S5NodeConfig) { return new S5Node(config);