| 9 | } |
| 10 | |
| 11 | export interface JwtPayload { |
| 12 | iss?: string; |
| 13 | sub?: string; |
| 14 | aud?: string[] | string; |
| 15 | exp?: number; |
| 16 | nbf?: number; |
| 17 | iat?: number; |
| 18 | jti?: string; |
| 19 | } |
| 20 | |
| 21 | export class InvalidTokenError extends Error {} |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…