Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions packages/jwt/src/create-jwt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ export interface JwtHeader extends Omit<JWTHeader, "alg" | "typ"> {
* @param payload - The payload to create the JWT from
* @param options - The options to create the JWT from
* @param header - Optional header overrides
* @param header.alg - The algorithm to use for the JWT. Accepts `secp256k1` and
* `Ed25519` as aliases for `ES256K` and `EdDSA` respectively. Defaults to
* `ES256K`.
* @param header.alg - The algorithm to use for the JWT. Defaults to `ES256K`.
* @returns The JWT
*/
export async function createJwt(
Expand Down