Rocky_Mountain_Vending/.pnpm-store/v10/files/32/a3d59baedae767713858c67b27c700a47a0b8c91cf8144243af1a2f4fc6e08e290c70aa1a84c8d96a6bdb1241aa0c391fc0f81bbbcf5082f638a39172f4f39
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

33 lines
No EOL
1.1 KiB
Text

export namespace Sentry {
export { init };
export { noop as captureMessage };
export { noop as captureBreadcrumb };
export { noop as getContext };
export let captureException: (error: Error, options: {
level?: string;
tags?: {
[key: string]: any;
};
extra?: {
[key: string]: any;
};
}) => Promise<void>;
export function _shouldSample(): boolean;
}
export type Breadcrumb = import("@sentry/node").Breadcrumb;
export type NodeClient = import("@sentry/node").NodeClient;
export type NodeOptions = import("@sentry/node").NodeOptions;
export type SeverityLevel = import("@sentry/node").SeverityLevel;
/**
* When called, replaces noops with actual Sentry implementation.
* @param {{url: string, flags: LH.CliFlags, config?: LH.Config, environmentData: NodeOptions}} opts
*/
declare function init(opts: {
url: string;
flags: LH.CliFlags;
config?: LH.Config;
environmentData: NodeOptions;
}): Promise<void>;
declare function noop(): void;
export {};
//# sourceMappingURL=sentry.d.ts.map