/** * Batch Operation Types * Shared types for batch processing operations */ export interface BatchOperation { uri: string; type: 'resize' | 'crop' | 'filter' | 'compress' | 'convert'; params: Record; options?: Record; }