angular controllers, directives, services, resources since I'll be modifying them to work with the real data services. Then we'll have to merge back to the belle repo with the changes.
9 lines
191 B
C#
9 lines
191 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Web.Trees
|
|
{
|
|
public interface ISearchableTree
|
|
{
|
|
IEnumerable<SearchResultItem> Search(string searchText);
|
|
}
|
|
} |