Skip to content

Commit 35cb314

Browse files
committed
Remove CacheOptions as empty
1 parent 00a3f90 commit 35cb314

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

lib/msal-common/src/config/ClientConfiguration.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export type ClientConfiguration = {
4343
authOptions: AuthOptions;
4444
systemOptions?: SystemOptions;
4545
loggerOptions?: LoggerOptions;
46-
cacheOptions?: CacheOptions;
46+
cacheOptions?: undefined;
4747
storageInterface?: CacheManager;
4848
networkInterface?: INetworkModule;
4949
cryptoInterface?: ICrypto;
@@ -59,7 +59,7 @@ export type CommonClientConfiguration = {
5959
authOptions: Required<AuthOptions>;
6060
systemOptions: Required<SystemOptions>;
6161
loggerOptions: Required<LoggerOptions>;
62-
cacheOptions: CacheOptions | undefined;
62+
cacheOptions: undefined;
6363
storageInterface: CacheManager;
6464
networkInterface: INetworkModule;
6565
cryptoInterface: Required<ICrypto>;
@@ -118,11 +118,6 @@ export type LoggerOptions = {
118118
correlationId?: string;
119119
};
120120

121-
/**
122-
* Use this to configure credential cache preferences in the ClientConfiguration object
123-
*/
124-
export type CacheOptions = {};
125-
126121
/**
127122
* Library-specific options
128123
*/

lib/msal-common/src/exports-common.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export {
2727
AuthOptions,
2828
SystemOptions,
2929
LoggerOptions,
30-
CacheOptions,
3130
DEFAULT_SYSTEM_OPTIONS,
3231
AzureCloudOptions,
3332
ApplicationTelemetry,

0 commit comments

Comments
 (0)