Rocky_Mountain_Vending/.pnpm-store/v10/files/57/9f49cc7ce19cf115455f81df0ed646ee142ea057ad1b4c60c2e8feaaef158033b3c121cafb8206acfae5a772a2d374218e340b2dbfe3ee59a8fef423bb7071
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

17 lines
No EOL
742 B
Text

/**
* Safe error capture utilities for MCP server instrumentation
*
* Ensures error reporting never interferes with MCP server operation.
* All capture operations are wrapped in try-catch to prevent side effects.
*/
import type { McpErrorType } from './types';
/**
* Captures an error without affecting MCP server operation.
*
* The active span already contains all MCP context (method, tool, arguments, etc.)
* @param error - Error to capture
* @param errorType - Classification of error type for filtering
* @param extraData - Additional context data to include
*/
export declare function captureError(error: Error, errorType?: McpErrorType, extraData?: Record<string, unknown>): void;
//# sourceMappingURL=errorCapture.d.ts.map