UNPKG
@rt_lite/api
Version:
latest (1.0.4)
1.0.4
1.0.1
1.0.0
An unoficial rotten tomatoes REST api
gitlab.com/gabegabegabe/rtapi
@rt_lite/api
/
src
/
models
/
cache-options.model.ts
8 lines
(6 loc)
•
164 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
type
{
CacheAlgorithm
}
from
'~/models/cache-algorithm.model'
;
export
type
ICacheOptions
= {
algorithm
:
CacheAlgorithm
;
maxSize
:
number
;
ttl
:
number
; };