Packages > @fluidframework/routerlicious-driver > ITokenResponse

ITokenResponse Interface

Signature

export interface ITokenResponse

Properties

Property Modifiers Type Description
fromCache optional boolean A flag indicating whether token was obtained from local cache.
jwt string JSON Web Token (JWT) value.

Property Details

fromCache

A flag indicating whether token was obtained from local cache.

Signature

fromCache?: boolean;

Remarks

undefined indicates that the source of the token could not be determined.

jwt

JSON Web Token (JWT) value.

Signature

jwt: string;