mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-15 16:26: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 {};
|