Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
No EOL
540 B
Text
12 lines
No EOL
540 B
Text
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 |