UNPKG
@s25digital/aa-central-registry
Version:
latest (2.8.0)
2.8.0
2.7.0
2.6.1
2.6.0
2.5.1
2.5.0
2.3.1
2.3.0
2.2.0
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.3
2.0.2
2.0.1
2.0.1-0
2.0.0-0
1.5.2
1.5.1
1.5.0
1.4.3
1.4.2
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A package to work with Sahamati Central Registry in AA ecosystem
@s25digital/aa-central-registry
/
types
/
cache.d.ts
5 lines
•
158 B
TypeScript
View Raw
1
2
3
4
5
export
interface
ICache
{
set
(
key
:
string
,
value
:
string
): Promise<
boolean
>;
get
(
key
:
string
): Promise<
string
>;
remove
(
key
:
string
): Promise<
boolean
>; }