We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3544fd commit 98ce968Copy full SHA for 98ce968
lib/msal-common/src/cache/utils/CacheTypes.ts
@@ -9,7 +9,7 @@ import { AccessTokenEntity } from "../entities/AccessTokenEntity";
9
import { RefreshTokenEntity } from "../entities/RefreshTokenEntity";
10
import { AppMetadataEntity } from "../entities/AppMetadataEntity";
11
12
-export type AccountCache = Record<string, AccountEntity>
+export type AccountCache = Record<string, AccountEntity>;
13
export type IdTokenCache = Record<string, IdTokenEntity>;
14
export type AccessTokenCache = Record<string, AccessTokenEntity>;
15
export type RefreshTokenCache = Record<string, RefreshTokenEntity>;
0 commit comments