import { Command, flags } from '@oclif/command'; import OperationResult from '../domain/operation/OperationResult'; declare class Prune extends Command { static description: string; static flags: { 'dry-run': import("@oclif/parser/lib/flags").IBooleanFlag; only: flags.IOptionFlag; 'connection-resolver': flags.IOptionFlag; config: flags.IOptionFlag; }; /** * Started event handler. */ onStarted: (result: OperationResult) => Promise; /** * Success handler. */ onSuccess: (result: OperationResult) => Promise; /** * Failure handler. */ onFailed: (result: OperationResult) => Promise; /** * CLI command execution handler. * * @returns {Promise} */ run(): Promise; } export default Prune;