Files
website/node_modules/@algolia/autocomplete-preset-algolia/dist/esm/utils/getAppIdAndApiKey.d.ts
2024-05-06 17:15:30 -04:00

6 lines
161 B
TypeScript

import type { SearchClient } from '../types';
export declare function getAppIdAndApiKey(searchClient: SearchClient): {
appId: string;
apiKey: string;
};