UNPKG
openam-agent-custom
Version:
latest (1.2.0)
1.2.0
1.0.1
1.0.0
Customized ForgeRock AM Policy Agent for Node.js from Zoltan Tarcsay
openam-agent-custom
/
src
/
cache
/
cache.ts
10 lines
(6 loc)
•
179 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
Cache
<T =
any
> {
get
(
key
:
string
):
Promise
<T>;
put
(
key
:
string
,
value
: T):
Promise
<
void
>;
remove
(
key
:
string
):
Promise
<
void
>;
quit
():
Promise
<
void
>; }