Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/IIndexProvider.cs

11 lines
No EOL
289 B
C#

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