Page Contents
Home > @loopback/authentication-jwt > TokenObject
TokenObject type
Describes the token object that returned by the refresh token service functions.
Signature:
export type TokenObject = {
accessToken: string;
expiresIn?: string | undefined;
refreshToken?: string | undefined;
};