From 1e2897974f1d9f069e34e4ee98b3b3d49322e8e3 Mon Sep 17 00:00:00 2001 From: Shibo Lyu Date: Sun, 11 May 2025 02:21:31 +0800 Subject: [PATCH] fix: Add JSDoc and export signAndVerify module --- crypto/mod.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/crypto/mod.ts b/crypto/mod.ts index d952766..30ba0af 100644 --- a/crypto/mod.ts +++ b/crypto/mod.ts @@ -1,4 +1,11 @@ +/** + * `crypto` provides cryptographic operations and utilities for the Blah protocol, including key pairs and signing. + * + * @module + */ + export * from "./keypair.ts"; export * from "./publicKey.ts"; export type { BlahPayloadSignee, BlahSignedPayload } from "./signedPayload.ts"; +export * from "./signAndVerify.ts"; export * from "./utils.ts";