import { TokenUse } from '../../../enums/token-use'; export interface AccessTokenInterface { originJti?: string; sub?: string; eventId?: string; tokenUse?: TokenUse; scope?: string; authTime?: number; iss?: string; exp?: number; iat?: number; jti?: string; clientId?: string; }