From a99e05e65baa35fc96d168803622f9c886b0e81c Mon Sep 17 00:00:00 2001 From: Moe Jangda Date: Fri, 8 Dec 2023 09:51:39 -0600 Subject: [PATCH] remove unused type Co-Authored-By: kirahsapong <102400653+kirahsapong@users.noreply.github.com> --- packages/credentials/src/compact-jwt.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/credentials/src/compact-jwt.ts b/packages/credentials/src/compact-jwt.ts index 159c7cde3..4f02b324f 100644 --- a/packages/credentials/src/compact-jwt.ts +++ b/packages/credentials/src/compact-jwt.ts @@ -29,15 +29,6 @@ export type ParseJwtParams = { compactJwt: string } -/** - * Represents a verified JWT with signer information, header, and payload. - */ -export type VerifiedJwt = { - signerDid: string - header: JwtHeader - payload: JwtPayload & Record -} - /** * Represents a signer with a specific cryptographic algorithm and options. * @template T - The type of cryptographic options.