UNPKG
@adinsure-ops/ops-cli
Version:
latest (5.3.2)
rc (5.0.10-rc1)
test (5.2.1)
7.0.0-202412.1
6.0.0-202412.2
6.0.0-202412.1
5.3.2
5.3.1
5.3.0
5.2.2
5.2.1
5.2.0
5.1.3
5.1.2
5.1.1
5.1.0
5.0.11
5.0.10
5.0.10-rc1
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
5.0.0-rc5
5.0.0-rc4
5.0.0-rc3
4.8.4
4.8.3
4.8.2
4.8.1
4.8.0
4.7.0
4.6.0
4.5.5
4.5.0
4.4.0
4.3.0
4.2.0
4.1.0
4.0.0
4.0.0-rc9
4.0.0-rc7
4.0.0-rc6
4.0.0-rc10
Operations CLI for working with AdInsure
git.adacta-fintech.com/ops/ops-cli
ops/ops-cli
@adinsure-ops/ops-cli
/
lib
/
security
/
cache.d.ts
8 lines
(7 loc)
•
298 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
ICachePlugin
}
from
'@azure/msal-node'
;
export
default
class
LocalCachePlugin
implements
ICachePlugin
{
private
readonly
_accessTokenPath;
constructor
(
path
:
string
);
beforeCacheAccess
(
cacheContext
:
any
):
Promise
<
void
>;
afterCacheAccess
(
cacheContext
:
any
):
Promise
<
void
>; }