JsonCache type
Cacheformat som lästs från cachebloben som tillhandahålls till konfigurationen under app-instansieringen
type JsonCache = {
AccessToken: Record<string, SerializedAccessTokenEntity>
Account: Record<string, SerializedAccountEntity>
AppMetadata: Record<string, SerializedAppMetadataEntity>
IdToken: Record<string, SerializedIdTokenEntity>
RefreshToken: Record<string, SerializedRefreshTokenEntity>
}