Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/IProvider/IIndexProvider.cs
2023-04-25 21:02:34 +08:00

10 lines
270 B
C#

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