using System.Collections.Generic; using System.Threading; namespace Flow.Launcher.Plugin.Explorer.Search.IProvider { public interface IIndexProvider { public IAsyncEnumerable SearchAsync(string search, CancellationToken token); } }