UNPKG
rankmycache
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.0
An easy-to-use cache providing service.
rankmyapp/rankmycache
rankmycache
/
dist
/
config
/
config-options-interface.d.ts
11 lines
(10 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
CacheProviders
}
from
'../enums/cache-providers'
;
export
interface
CacheOptions
{
type
:
CacheProviders
;
host
:
string
;
port
:
number
;
password
?:
string
;
requestTimeout
?:
number
;
keyPrefix
?:
string
;
ttl
?:
number
|
false
; }