ISearchOperation.cs 300 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 using System; using System.Collections.Generic; namespace UnityEditor.PackageManager.UI { internal interface ISearchOperation : IBaseOperation { void GetAllPackageAsync(Action<IEnumerable<PackageInfo>> doneCallbackAction = null, Action<Error> errorCallbackAction = null); } }