@melchyore/adonis-cache
Version:
Cache package for AdonisJS V5
14 lines (13 loc) • 414 B
TypeScript
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>;
}