mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 22:15:13 +00:00
4 lines
324 B
TypeScript
4 lines
324 B
TypeScript
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>>;
|