UNPKG
node-sp-auth-nocolors
Version:
latest (0.0.1)
0.0.1
Unattended SharePoint http authentication with nodejs (Without Colors)
node-sp-auth-nocolors
/
lib
/
src
/
utils
/
Cache.d.ts
9 lines
(8 loc)
•
229 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
class
Cache
{
private
_cache; set<T>(
key
:
string
,
data
: T,
expiration
?:
number
|
Date
):
void
; get<T>(
key
:
string
): T;
remove
(
key
:
string
):
void
;
clear
():
void
;
private
getHashKey; }