mirror of
https://github.com/sern-handler/website
synced 2026-06-25 17:22:23 +00:00
7 lines
339 B
TypeScript
7 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 {};
|