@melchyore/adonis-cache
Version:
Cache package for AdonisJS V5
13 lines (12 loc) • 408 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;
};
store?: keyof CacheStoresList | undefined;
run(): Promise<void>;
}