Edit

Share via


JsonCache type

Cache format read from the cache blob provided to the configuration during app instantiation

type JsonCache = {
  AccessToken: Record<string, SerializedAccessTokenEntity>
  Account: Record<string, SerializedAccountEntity>
  AppMetadata: Record<string, SerializedAppMetadataEntity>
  IdToken: Record<string, SerializedIdTokenEntity>
  RefreshToken: Record<string, SerializedRefreshTokenEntity>
}