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.