Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/IPathEnumerable.cs
Hongtao Zhang 6fdff2971c
Merge Explorer & Everything Plugins (Step 1)
1. Shared Interface for Windows Index and Everything Index
2. Settings Merge (Part 1)
3. Include Everything dll
2022-06-25 12:38:50 -05:00

9 lines
No EOL
218 B
C#

using System.Collections.Generic;
namespace Flow.Launcher.Plugin.Explorer.Search
{
public interface IPathEnumerable
{
public IEnumerable<SearchResult> Enumerate(string path, bool recursive);
}
}