From 2b8738e38a4286c9a1411e3aef3159f61427317c Mon Sep 17 00:00:00 2001 From: Shueh Chou Lu Date: Fri, 15 Oct 2021 15:08:27 +0800 Subject: [PATCH] fix(typescript): export ProduceJWT (#285) --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 5b4990f7d6..1c7bf33029 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,6 +16,7 @@ export { jwtVerify } from './jwt/verify.js' export type { JWTVerifyOptions, JWTVerifyGetKey } from './jwt/verify.js' export { jwtDecrypt } from './jwt/decrypt.js' export type { JWTDecryptOptions, JWTDecryptGetKey } from './jwt/decrypt.js' +export type { ProduceJWT } from './jwt/produce.js' export { CompactEncrypt } from './jwe/compact/encrypt.js' export { FlattenedEncrypt } from './jwe/flattened/encrypt.js'