UNPKG

@melchyore/adonis-cache

Version:
13 lines (12 loc) 408 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; }; store?: keyof CacheStoresList | undefined; run(): Promise<void>; }