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
/
ICache.d.ts
11 lines
(10 loc)
•
268 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** *
@author
wigetapp
*
@copyright
wx
@wigetapp
.com *
@description
access_token 缓存接口 */
export
interface
ICache
{
get
(
key
:
string
):
Promise
<
any
>;
set
(
key
:
string
,
jsonValue
:
string
):
Promise
<
any
>;
remove
(
key
:
string
):
Promise
<
any
>; }