Interface UmbSearchProvider<SearchResultItemType, SearchRequestArgsType>

interface UmbSearchProvider<SearchResultItemType, SearchRequestArgsType> {
    destroy(): void;
    search(args: SearchRequestArgsType): Promise<UmbRepositoryResponse<UmbPagedModel<SearchResultItemType>>>;
}

Type Parameters

Hierarchy (view full)

Methods

Methods

""