From 8b3a1a1fe71b8431ce89205cd245734d5a0142a3 Mon Sep 17 00:00:00 2001 From: Mohammed Gadi Date: Thu, 12 Dec 2024 16:19:46 +0530 Subject: [PATCH] chore(types): add missing input type for DecodedJwt --- src/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.d.ts b/src/index.d.ts index 82c15f6..20d278d 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -65,7 +65,8 @@ type VerifierCallback = (e: Error | TokenError | null, payload: any) => void type DecodedJwt = { header: Record payload: any - signature: string + signature: string, + input: string } type KeyFetcher =