@visitscotland/component-library
Version:
VisitScotland Component Library
8 lines (6 loc) • 455 B
TypeScript
import { FederatedSearchResult } from '../../../types/types';
declare function eventSearch(api: string, searchTerm: string, page: number, selectedCategoryKey: string, selectedSubCategoryKey: string[], startDate: string, endDate: string, sortBy: string, siteLanguage: string, postcode: string, location: string, radius: number, postcodeareas: string): Promise<{
results: FederatedSearchResult[];
totalResults: any;
}>;
export default eventSearch;