UNPKG
@melchyore/adonis-cache
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Cache package for AdonisJS V5
github.com/Melchyore/adonis-cache
Melchyore/adonis-cache
@melchyore/adonis-cache
/
build
/
src
/
Enums
/
CacheEvents.d.ts
8 lines
(7 loc)
•
195 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
declare
enum
CacheEvents
{
Hit
=
"cache:hit"
,
Missed
=
"cache:missed"
,
KeyWritten
=
"cache:key_written"
,
KeyForgotten
=
"cache:key_forgotten"
}
export
default
CacheEvents
;