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

11 lines
No EOL
340 B
C#

using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace Flow.Launcher.Plugin.Explorer.Search
{
public interface IContentIndexProvider
{
public IAsyncEnumerable<SearchResult> ContentSearchAsync(string plainSearch, string contentSearch, CancellationToken token = default);
}
}