Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/eb6466ba84e0c5549b9152fd15efa31ae5261e8d48803989c4d11334b5dab474746688bcb7bea36e9ad20c9744487a3f283cce0c2241a02d3a6d1989ffb0c9
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

18 lines
No EOL
753 B
Text

/**
* Result extraction functions for MCP server instrumentation
*
* Handles extraction of attributes from tool and prompt execution results.
*/
/**
* Extract tool result attributes for span instrumentation
* @param result - Tool execution result
* @returns Attributes extracted from tool result content
*/
export declare function extractToolResultAttributes(result: unknown): Record<string, string | number | boolean>;
/**
* Extract prompt result attributes for span instrumentation
* @param result - Prompt execution result
* @returns Attributes extracted from prompt result
*/
export declare function extractPromptResultAttributes(result: unknown): Record<string, string | number | boolean>;
//# sourceMappingURL=resultExtraction.d.ts.map