Rocky_Mountain_Vending/.pnpm-store/v10/files/a8/7e2ede043f3f23d8c676da3dc9a50588b0954191ba4bbd7aa284b00bb1a558430e10ad0d90434e01be08af94a3907aedc5cc90c4c34b03127d75bcd8f9c460
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
772 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