diff --git a/src/index.ts b/src/index.ts index 5f29d66..9f1fa4e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -46,7 +46,7 @@ export type JwtHeader = { * @prop {string} [iat] Issued At * @prop {string} [jti] JWT ID */ -export type JwtPayload = { +export type JwtPayload = { /** Issuer */ iss?: string @@ -67,8 +67,6 @@ export type JwtPayload = { /** JWT ID */ jti?: string - - [key: string]: any } & T /**