Files
klz-cables.com/.pnpm-store/v10/files/f7/2187bc996448249d19694f459a3f157df061a1f259d361d035fa4a46a08396d15853049fee188a777354472a8673af24a21dff90a20f17e63a8a0d6171b278
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

12 lines
540 B
Plaintext

import type { Event, EventHint } from './event';
/**
* Event processors are used to change the event before it will be sent.
* We strongly advise to make this function sync.
* Returning a PromiseLike<Event | null> will work just fine, but better be sure that you know what you are doing.
* Event processing will be deferred until your Promise is resolved.
*/
export interface EventProcessor {
(event: Event, hint: EventHint): PromiseLike<Event | null> | Event | null;
id?: string;
}
//# sourceMappingURL=eventprocessor.d.ts.map