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>
8 lines
No EOL
247 B
Text
8 lines
No EOL
247 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 |