Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/IProvider/IIndexProvider.cs
Hongtao Zhang 2c3df3f4db
Change signature back to string to accommodate async method.
Port open Windows Context Menu feature
2022-09-24 14:23:59 -05:00

11 lines
284 B
C#

using System;
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);
}
}