@progress/sitefinity-nextjs-sdk
Version:
Provides OOB widgets developed using the Next.js framework, which includes an abstraction layer for Sitefinity communication. Additionally, it offers an expanded API, typings, and tools for further development and integration.
20 lines (19 loc) • 776 B
TypeScript
import { SearchBoxViewProps } from './search-box.view-props';
import { SearchBoxEntity } from './search-box.entity';
export declare function serializeScoringProfile(scoringProfile: {
scoringSetting: string;
scoringParameters: string;
}): string;
export declare function getSearchBoxParams(searchModel: SearchBoxViewProps<SearchBoxEntity>, orderBy: string): {
resultsUrl: string | null;
catalogue: string | null;
scoringSetting: string;
minSuggestionLength: number;
siteId: string;
culture: string;
suggestionFields: string | null;
servicePath: string;
orderBy: string;
resultsForAllSites: number;
};
export declare function getSearchUrl(query: string, searchModel: SearchBoxViewProps<SearchBoxEntity>, orderBy: string): string;