UNPKG

@melchyore/adonis-cache

Version:
13 lines (12 loc) 367 B
import type { CacheEventContract } from '@ioc:Adonis/Addons/Cache'; import CacheEvents from '../Enums/CacheEvents'; export default class CacheHit implements CacheEventContract { key: string; value: unknown; EVENT: CacheEvents; constructor(key: string, value: unknown); toJSON(): { key: string; value: unknown; }; }