mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
6 lines
339 B
TypeScript
6 lines
339 B
TypeScript
import { AlgoliaInsightsHit, InsightsParamsWithItems, ViewedObjectIDsParams } from './types';
|
|
declare type CreateViewedEventsParams = {
|
|
items: AlgoliaInsightsHit[];
|
|
};
|
|
export declare function createViewedEvents({ items, }: CreateViewedEventsParams): Array<Omit<InsightsParamsWithItems<ViewedObjectIDsParams>, 'eventName'>>;
|
|
export {};
|