interface EncodedJWT {
    jwt?: JWT;
    renewToken: string;
    token: string;
}

Properties

Properties

jwt?: JWT

The renewed JWT.

renewToken: string

The encoded renew token. This token is necessary to renew the JWT.

token: string

The encoded token of the renewed JWT.