UNPKG

@melchyore/adonis-cache

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