UNPKG
angular-caching
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.2
Lightweight library for data caching
angular-caching
/
inmemory-cache
/
inmemory-cache.component.d.ts
7 lines
(6 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
interface
InMemoryCacheOptions
{
ttl
?:
number
;
cacheSize
?:
number
;
sync
?:
boolean
; }
export
declare
function
InMemoryCache
(
params
?:
InMemoryCacheOptions
):
(
target
:
any
,
propertyKey
:
string
,
descriptor
:
PropertyDescriptor
) =>
void
;