File

shared/interfaces/auth.ts

Description

Abstract Json Web Token Payload interface

Index

Properties

Properties

exp
exp: number
Type : number
Optional
iat
iat: number
Type : number
Optional
export interface AbstractJwtPayload {
  /**
   *  iat (Issuet at) JWT claim (https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.6)
   */
  iat?: number;
  /**
   *  exp (Expiration time) JWT claim (https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.4)
   */
  exp?: number;
}

results matching ""

    No results matching ""