File tree 2 files changed +2
-8
lines changed
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export type ClientConfiguration = {
43
43
authOptions : AuthOptions ;
44
44
systemOptions ?: SystemOptions ;
45
45
loggerOptions ?: LoggerOptions ;
46
- cacheOptions ?: CacheOptions ;
46
+ cacheOptions ?: undefined ;
47
47
storageInterface ?: CacheManager ;
48
48
networkInterface ?: INetworkModule ;
49
49
cryptoInterface ?: ICrypto ;
@@ -59,7 +59,7 @@ export type CommonClientConfiguration = {
59
59
authOptions : Required < AuthOptions > ;
60
60
systemOptions : Required < SystemOptions > ;
61
61
loggerOptions : Required < LoggerOptions > ;
62
- cacheOptions : CacheOptions | undefined ;
62
+ cacheOptions : undefined ;
63
63
storageInterface : CacheManager ;
64
64
networkInterface : INetworkModule ;
65
65
cryptoInterface : Required < ICrypto > ;
@@ -118,11 +118,6 @@ export type LoggerOptions = {
118
118
correlationId ?: string ;
119
119
} ;
120
120
121
- /**
122
- * Use this to configure credential cache preferences in the ClientConfiguration object
123
- */
124
- export type CacheOptions = { } ;
125
-
126
121
/**
127
122
* Library-specific options
128
123
*/
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ export {
27
27
AuthOptions ,
28
28
SystemOptions ,
29
29
LoggerOptions ,
30
- CacheOptions ,
31
30
DEFAULT_SYSTEM_OPTIONS ,
32
31
AzureCloudOptions ,
33
32
ApplicationTelemetry ,
You can’t perform that action at this time.
0 commit comments