fix: Add JSDoc and export signAndVerify module

This commit is contained in:
Shibo Lyu 2025-05-11 02:21:31 +08:00
parent 5e6a51e172
commit 1e2897974f

View file

@ -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";