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