mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
9 lines
433 B
TypeScript
9 lines
433 B
TypeScript
import type { AlgoliaInsightsHit, ClickedObjectIDsAfterSearchParams, InsightsParamsWithItems } from './types';
|
|
declare type CreateClickedEventParams = {
|
|
item: AlgoliaInsightsHit;
|
|
items: AlgoliaInsightsHit[];
|
|
};
|
|
export declare function createClickedEvent({ item, items, }: CreateClickedEventParams): Omit<InsightsParamsWithItems<ClickedObjectIDsAfterSearchParams>, 'eventName'> & {
|
|
algoliaSource?: string[];
|
|
};
|
|
export {};
|