Files

4 lines
324 B
TypeScript
Raw Permalink Normal View History

2026-05-03 12:12:57 -04:00
import type { SearchResponse } from '@algolia/autocomplete-shared';
import type { SearchForFacetValuesResponse, SearchParams } from '../types';
export declare function fetchAlgoliaResults<TRecord>({ searchClient, queries, userAgents, }: SearchParams): Promise<Array<SearchResponse<TRecord> | SearchForFacetValuesResponse>>;