using System; namespace UnityEditor.PackageManager.UI { internal interface IBaseOperation { event Action OnOperationError; event Action OnOperationFinalized; bool IsCompleted { get; } void Cancel(); } }