UNPKG
ngx-api-manager
Version:
latest (0.2.8)
0.2.8
0.2.7
0.2.6
0.2.5
0.2.4
Module for configuration http requests
github.com/Talalaev/ngx-api-manager
Talalaev/ngx-api-manager
ngx-api-manager
/
memoryStorage.d.ts
7 lines
(6 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
ISApi
}
from
'./typings'
;
export
declare
class
MemoryStorage
implements
ISApi
.
Storage
{
get
(
key
:
any
):
any
;
set
(
key
:
string
,
data
:
ISApi
.
dataCache
):
ISApi
.
dataCache
;
static
isFresh
(
lastUpdate
:
any
,
howLongIsItFresh
:
any
):
boolean
; }