Rocky_Mountain_Vending/.pnpm-store/v10/files/35/9d0c8e8764f666e6612acd46cbf2f68534cdf07d71b628028d106271185ae17e0e12673a62f59550dd3665f6892e758def399a2b2e604002f08bc490084532
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

12 lines
548 B
Text

import { 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