import { BaseCommand } from '@adonisjs/core/ace'; import { type CommandOptions } from '@adonisjs/core/types/ace'; export default class CacheClear extends BaseCommand { #private; static commandName: string; static description: string; static options: CommandOptions; /** * Choose a custom cache store to clear. Otherwise, we use the * default one */ store: string; /** * Optionally select a namespace to clear. Defaults to the whole cache. */ namespace: string; /** * Optionally specify tags to invalidate. Can be used multiple times. */ tags: string[]; /** * Force clear the cache without asking for confirmation in production */ force: boolean; /** * Handle command */ run(): Promise; }