The product to add to the history.
export async function addHistory(history: HistoryEntry): Promise<void> {
if (!history) {
return;
}
history.timestamp = Date.now();
if (history.type === "search") {
await addSearchHistoryEntry(history);
}
}
Add a product to the history of products that were clicked on.