@sysdoc/sharepoint-utils
Version:
Sysdoc's core Sharepoint utilities
17 lines (16 loc) • 438 B
TypeScript
import { IRefiner } from "./IRefiner";
import { ISearchSortProperty } from "./ISearchSortProperty";
export interface ISearchQuery {
text: string;
rowLimit?: number;
cache?: boolean;
refiners?: IRefiner<any>[];
basicRefiners?: {
key: string;
value: string;
}[];
stringRefiners?: string[];
extra?: any;
sortList?: ISearchSortProperty[];
selectProperties?: string[];
}