Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/53e049e7726bd573af8a804a3d639c18ef3e222c6ea3e3d5834aec48feca15f3d653776d6c88d4b11627614f127e85e44cf9edc902ac1094b1cfdf1c31ab2a
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

8 lines
256 B
Text

/**
* A function that is possibly wrapped by Sentry.
*/
export type WrappedFunction<T extends Function = Function> = T & {
__sentry_wrapped__?: WrappedFunction<T>;
__sentry_original__?: T;
};
//# sourceMappingURL=wrappedfunction.d.ts.map