UNPKG
@wigetapp/cache
Version:
latest (0.1.11)
0.1.11
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.2
wxs 微信系开发脚手架之缓存
gitee.com/kroawen/wxs
@wigetapp/cache
/
dist
/
DefaultCache.d.ts
8 lines
(7 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
ICache
}
from
'./ICache'
;
export
declare
class
DefaultCache
implements
ICache
{
private
map;
get
(
key
:
string
):
Promise
<
string
>;
set
(
key
:
string
,
jsonValue
:
string
):
Promise
<
void
>;
remove
(
key
:
string
):
Promise
<
void
>; }