mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 21:41:53 +07: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>>;
|