JsonCache type

アプリのインスタンス化中に構成に提供されたキャッシュ BLOB から読み取られたキャッシュ形式

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