UNPKG

@melchyore/adonis-cache

Version:
14 lines (13 loc) 414 B
import { BaseCommand } from '@adonisjs/core/build/standalone'; import { CacheStoresList } from '@ioc:Adonis/Addons/Cache'; export default class Forget extends BaseCommand { static commandName: string; static description: string; static settings: { loadApp: boolean; stayAlive: boolean; }; key: string; store?: keyof CacheStoresList; run(): Promise<void>; }