diff --git a/packages/server/src/helpers/cose.ts b/packages/server/src/helpers/cose.ts index 4e022405..ad062cab 100644 --- a/packages/server/src/helpers/cose.ts +++ b/packages/server/src/helpers/cose.ts @@ -7,6 +7,7 @@ * * These types are an unorthodox way of saying "these Maps should involve these discrete lists of * keys", but it works. + * @module */ export type COSEPublicKey = { // Getters diff --git a/packages/server/src/helpers/iso/isoBase64URL.ts b/packages/server/src/helpers/iso/isoBase64URL.ts index 52c4bd83..6ad536c6 100644 --- a/packages/server/src/helpers/iso/isoBase64URL.ts +++ b/packages/server/src/helpers/iso/isoBase64URL.ts @@ -1,3 +1,7 @@ +/** + * A runtime-agnostic collection of methods for working with Base64URL encoding + * @module + */ import base64 from '@hexagon/base64'; import type { Base64URLString } from '../../types/index.ts'; diff --git a/packages/server/src/helpers/iso/isoCBOR.ts b/packages/server/src/helpers/iso/isoCBOR.ts index d48ca49c..70f0e7ea 100644 --- a/packages/server/src/helpers/iso/isoCBOR.ts +++ b/packages/server/src/helpers/iso/isoCBOR.ts @@ -1,3 +1,7 @@ +/** + * A runtime-agnostic collection of methods for working with CBOR encoding + * @module + */ import * as tinyCbor from 'tiny-cbor'; /** diff --git a/packages/server/src/helpers/iso/isoCrypto/index.ts b/packages/server/src/helpers/iso/isoCrypto/index.ts index 6d10ad1a..ea905095 100644 --- a/packages/server/src/helpers/iso/isoCrypto/index.ts +++ b/packages/server/src/helpers/iso/isoCrypto/index.ts @@ -1,3 +1,7 @@ +/** + * A runtime-agnostic collection of methods for working with the WebCrypto API + * @module + */ export { digest } from './digest.ts'; export { getRandomValues } from './getRandomValues.ts'; export { verify } from './verify.ts'; diff --git a/packages/server/src/helpers/iso/isoUint8Array.ts b/packages/server/src/helpers/iso/isoUint8Array.ts index 0df67637..f681c0d7 100644 --- a/packages/server/src/helpers/iso/isoUint8Array.ts +++ b/packages/server/src/helpers/iso/isoUint8Array.ts @@ -1,3 +1,8 @@ +/** + * A runtime-agnostic collection of methods for working with Uint8Arrays + * @module + */ + /** * Make sure two Uint8Arrays are deeply equivalent */