using System; using System.Collections.Generic; namespace UnityEditor.PackageManager.UI { internal interface ISearchOperation : IBaseOperation { void GetAllPackageAsync(Action> doneCallbackAction = null, Action errorCallbackAction = null); } }