Interface SearchAndListingSubControllers<P, S>

interface SearchAndListingSubControllers<P, S> {
    breadcrumbManager(): BreadcrumbManager;
    facetGenerator(): FacetGenerator;
    interactiveProduct(props: InteractiveProductProps): InteractiveProduct;
    pagination(props?: PaginationProps): Pagination;
    parameterManager(props: ParameterManagerProps<P>): ParameterManager<P>;
    sort(props?: SortProps): Sort;
    summary(): Summary<S>;
    urlManager(props: UrlManagerProps): UrlManager;
}

Type Parameters

Hierarchy (view full)

Methods