import { BaseCommand } from '@adonisjs/core/ace'; import { type CommandOptions } from '@adonisjs/core/types/ace'; export default class CacheDelete extends BaseCommand { #private; static commandName: string; static description: string; static options: CommandOptions; /** * The cache key to delete */ key: string; /** * Choose a custom cache store to delete from. Otherwise, we use the * default one */ store: string; /** * Handle command */ run(): Promise; }