import OperationResult from './OperationResult'; interface OperationParams { only?: string; 'dry-run'?: boolean; onStarted?: (result: OperationResult) => Promise; onSuccess?: (result: OperationResult) => Promise; onFailed?: (result: OperationResult) => Promise; } export default OperationParams;