coveo-search-ui
Version:
Coveo JavaScript Search Framework
20 lines (18 loc) • 633 B
text/typescript
import { IFieldOption } from '../Base/IComponentOptions';
import { Template } from '../Templates/Template';
export interface IResultListOptions {
resultsContainer?: HTMLElement;
resultTemplate?: Template;
resultOptions?: {};
waitAnimationContainer?: HTMLElement;
enableInfiniteScroll?: boolean;
infiniteScrollPageSize?: number;
infiniteScrollContainer?: HTMLElement | Window;
waitAnimation?: string;
mobileScrollContainer?: HTMLElement;
enableInfiniteScrollWaitingAnimation?: boolean;
fieldsToInclude?: IFieldOption[];
autoSelectFieldsToInclude?: boolean;
layout?: string;
enableScrollToTop?: boolean;
}