UNPKG

@melchyore/adonis-cache

Version:
11 lines (10 loc) 308 B
import type { CacheEventContract } from '@ioc:Adonis/Addons/Cache'; import CacheEvents from '../Enums/CacheEvents'; export default class CacheMissed implements CacheEventContract { key: string; EVENT: CacheEvents; constructor(key: string); toJSON(): { key: string; }; }