refactor: export NodeId

This commit is contained in:
Derrick Hammer 2023-08-31 11:10:15 -04:00
parent 9305f3d42c
commit 16d0c758f3
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ import type { SignedRegistryEntry } from "#service/registry.js";
import { ed25519 } from "@noble/curves/ed25519";
import KeyPairEd25519 from "#ed25519.js";
import { S5NodeConfig } from "./types.js";
import NodeId from "#nodeId.js";
export * from "./types.js";
export {
@ -11,6 +12,7 @@ export {
createTransportPeer,
} from "./transports/index.js";
export type { SignedRegistryEntry };
export { NodeId };
export function createNode(config: S5NodeConfig) {
return new S5Node(config);