Rocky_Mountain_Vending/.pnpm-store/v10/files/b6/6801fdd5fddda8a4a219131b1d8876e52622be498853f1c28471e1b1c7d6fb7f60a39461141b72b49124cca5c68d6f523262e5b5bb0c0dde43408042bd54ff
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

6 lines
424 B
Text

import type { ClientTraceDataEntry } from './tracer';
/**
* Takes OpenTelemetry client trace data and the `clientTraceMetadata` option configured in the Next.js config (currently
* experimental) and returns a filtered/allowed list of client trace data entries.
*/
export declare function getTracedMetadata(traceData: ClientTraceDataEntry[], clientTraceMetadata: string[] | undefined): ClientTraceDataEntry[] | undefined;